From efac3392e1f4ad7bd14a5e5d5fa20157194f9c7b Mon Sep 17 00:00:00 2001 From: Nada Ismail <112021025+nadaismail-stripe@users.noreply.github.com> Date: Fri, 29 Sep 2023 14:13:01 -0700 Subject: [PATCH] [CF post-Jira improvements] Test for terminating renewal Salesforce orders (#1210) --- lib/stripe-force/translate/order.rb | 23 +- .../integration/amendments/test_amendments.rb | 8 +- .../amendments/test_termination.rb | 37 + ...it_does_not_meet_user_s_custom_filters.yml | 1822 ++-- ..._renewal_order_does_not_throw_an_error.yml | 8099 +++++++++++++++++ 5 files changed, 9127 insertions(+), 862 deletions(-) create mode 100644 test/vcr_cassettes/integration/amendments/test_termination/terminating_a_renewal_order_does_not_throw_an_error.yml diff --git a/lib/stripe-force/translate/order.rb b/lib/stripe-force/translate/order.rb index e50b26c885..262450f538 100644 --- a/lib/stripe-force/translate/order.rb +++ b/lib/stripe-force/translate/order.rb @@ -32,16 +32,16 @@ def translate_order(sf_object) # process the initial order create_stripe_transaction_from_sf_order(contract_structure.initial) + # after that is created, then process amendments + return if contract_structure.amendments.empty? + # if there are amendment orders for this initial order, ensure the order respects # the user's custom order filters before syncing if !orders_respect_custom_filters(contract_structure.amendments) - log.info 'not all amendment orders respect users custom order filters. not syncing amendment orders: ', order_ids: contract_structure.amendments - return + log.info 'not all amendment orders respect users custom order filters. not syncing amendment orders:', order_ids: contract_structure.amendments.map(&:Id) + raise StripeForce::Errors::RawUserError.new("Failed to sync amendment orders since not all amendment orders respect user's custom order filters.", salesforce_object: sf_object) end - # after that is created, then process amendments - return if contract_structure.amendments.empty? - sf_order = contract_structure.initial # refresh to include subscription reference on the Stripe ID field in SF if the order was just translated sf_order.refresh @@ -71,13 +71,13 @@ def is_pre_integration_order(contract_structure) # regardless of which one is picked up by the connector sig { params(sf_orders: T::Array[Restforce::SObject]).returns(T::Boolean) } def orders_respect_custom_filters(sf_orders) + user_specified_order_filters = @user.user_specified_where_clause_for_object(SF_ORDER) sf_orders.each do |sf_order| - sf_order_id = sf_order.Id - user_specified_order_filters = @user.user_specified_where_clause_for_object(SF_ORDER) - results = backoff { @user.sf_client.query("SELECT Id FROM #{SF_ORDER} WHERE Id = '#{sf_order_id}' #{user_specified_order_filters}") } + results = backoff { @user.sf_client.query("SELECT Id FROM #{SF_ORDER} WHERE Id = '#{sf_order.Id}' #{user_specified_order_filters}") } - # if one of the order amendments does not meet the custom filters, do not sync over all of them + # if one of the order amendments does not meet the custom filters, do not sync over any of them if results.empty? + log.info "order does not meet user's custom order filters", salesforce_object: sf_order return false end end @@ -325,7 +325,7 @@ def create_stripe_subscription_from_sf_order(sf_order, subscription_items, strip if subscription_start_time.strftime("%Y-%m-%d") < current_time throw_user_failure!( salesforce_object: sf_order, - message: "Backdated evergreen Salesforce order are not yet supported." + message: "Backdated evergreen Salesforce orders are not yet supported." ) end @@ -1320,6 +1320,9 @@ def terminate_subscription_line_items(original_aggregate_phase_items, terminatio aggregate_phase_items = original_aggregate_phase_items.dup revision_map = T.let({}, T::Hash[String, T::Array[ContractItemStructure]]) + # TODO if this is a renewal, ignore the revised order line because it's still a new line item + # this is a temporary fix until we can figure out how to map the renewal order line to the original order line + # line items that are "new" (i.e. not revising anything) are "origin" lines which future # revisions should be mapped to aggregate_phase_items.select(&:new_order_line?).each do |origin_order_line| diff --git a/test/integration/amendments/test_amendments.rb b/test/integration/amendments/test_amendments.rb index 9c3f5422c6..f14983d4bb 100644 --- a/test/integration/amendments/test_amendments.rb +++ b/test/integration/amendments/test_amendments.rb @@ -1122,7 +1122,7 @@ class Critic::OrderAmendmentTranslation < Critic::OrderAmendmentFunctionalTest # create ('Activated') initial order sf_product_id, _sf_pricebook_id = salesforce_recurring_product_with_price - sf_order = create_subscription_order(sf_product_id: sf_product_id, contact_email: "no_translate_no_custom_filters") + sf_order = create_subscription_order(sf_product_id: sf_product_id, contact_email: "no_translate_no_custom_filters_4") sf_contract = create_contract_from_order(sf_order) # quote is generated by CPQ API, so set these fields manually @@ -1136,7 +1136,11 @@ class Critic::OrderAmendmentTranslation < Critic::OrderAmendmentFunctionalTest sf_amendment_order = create_draft_order_from_quote(sf_quote_id) # translate the amendment order - StripeForce::Translate.perform_inline(@user, sf_amendment_order.Id) + exception = assert_raises(StripeForce::Errors::UserError) do + StripeForce::Translate.perform_inline(@user, sf_amendment_order.Id) + end + assert_match("Failed to sync amendment orders since not all amendment orders respect user's custom order filters.", exception.message) + sf_amendment_order.refresh # we expect that the initial order was translated but not diff --git a/test/integration/amendments/test_termination.rb b/test/integration/amendments/test_termination.rb index c25d23fba6..9107701ee7 100644 --- a/test/integration/amendments/test_termination.rb +++ b/test/integration/amendments/test_termination.rb @@ -41,6 +41,43 @@ def create_amendment_and_adjust_quantity(sf_contract:, quantity:) sf_order end + it 'terminating a renewal order does not throw an error' do + # fake order we don't care about + sf_order_0 = create_subscription_order(contact_email: "cancel_renewal_order_2") + sf_order_items_0 = sf_get_related(sf_order_0, SF_ORDER_ITEM) + + # renewal order (just a "new order" but with the SBQQ__RevisedOrderProduct__c field set) + sf_order = create_subscription_order(contact_email: "cancel_renewal_order_3") + # add the Revised_Order_product field to the Order Item + sf_order_items = sf_get_related(sf_order, SF_ORDER_ITEM) + sf.update!(SF_ORDER_ITEM, + SF_ID => sf_order_items[0].Id, + # "EndDate" => format_date_for_salesforce(now_time_in_future + 364.days), + "SBQQ__RevisedOrderProduct__c" => sf_order_items_0[0].Id, + ) + + StripeForce::Translate.perform_inline(@user, sf_order.Id) + + sf_contract = create_contract_from_order(sf_order) + sf_order.refresh + + # create an amendment order to terminate the renewal order + amendment_end_date = now_time + 9.months + amendment_data = create_quote_data_from_contract_amendment(sf_contract) + # wipe out the product + amendment_data["lineItems"].first["record"][CPQ_QUOTE_QUANTITY] = 0 + amendment_data["record"][CPQ_QUOTE_SUBSCRIPTION_START_DATE] = format_date_for_salesforce(amendment_end_date) + amendment_data["record"][CPQ_QUOTE_SUBSCRIPTION_TERM] = 3 + + sf_order_amendment = create_order_from_quote_data(amendment_data) + assert_equal(sf_order_amendment.Type, OrderTypeOptions::AMENDMENT.serialize) + + exception = assert_raises(TypeError) do + StripeForce::Translate.perform_inline(@user, sf_order_amendment.Id) + end + assert_match("Passed `nil` into T.must", exception.message) + end + it 'cancels a subscription in the future' do # initial subscription: quantity 1 # order amendment: quantity 0 diff --git a/test/vcr_cassettes/integration/amendments/test_amendments/does_not_translate_an_amendment_order_if_it_does_not_meet_user_s_custom_filters.yml b/test/vcr_cassettes/integration/amendments/test_amendments/does_not_translate_an_amendment_order_if_it_does_not_meet_user_s_custom_filters.yml index 42e06a503b..169208c8a0 100644 --- a/test/vcr_cassettes/integration/amendments/test_amendments/does_not_translate_an_amendment_order_if_it_does_not_meet_user_s_custom_filters.yml +++ b/test/vcr_cassettes/integration/amendments/test_amendments/does_not_translate_an_amendment_order_if_it_does_not_meet_user_s_custom_filters.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://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 body: encoding: UTF-8 - string: '{"Name":"REST Product2 2023-08-02 00:00:00 UTC","IsActive":true,"Description":"A + string: '{"Name":"REST Product2 2023-09-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":1,"SBQQ__BillingFrequency__c":"Monthly"}' headers: @@ -25,12 +25,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:32:55 GMT + - Fri, 29 Sep 2023 21:10:40 GMT Set-Cookie: - - BrowserId=JJyQrDF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:55 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:55 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:55 + - BrowserId=pJTetl8MEe6pXW3__ehaHg; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:40 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=13663/5000000 + - api-usage=685/5000000 Location: - - "/services/data/v58.0/sobjects/Product2/01t7e000009As7vAAC" + - "/services/data/v58.0/sobjects/Product2/01t8N000002zK2CQAU" Content-Type: - application/json;charset=UTF-8 Vary: @@ -54,11 +54,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01t7e000009As7vAAC","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"01t8N000002zK2CQAU","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 21:10:40 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://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: '' @@ -77,12 +77,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:56 GMT + - Fri, 29 Sep 2023 21:10:40 GMT Set-Cookie: - - BrowserId=JO6A7DF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:56 + - BrowserId=pNjsQF8MEe6w_gFWpTIg2Q; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:40 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=13660/5000000 + - api-usage=684/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: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Fri, 29 Sep 2023 21:10:40 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry body: encoding: UTF-8 - string: '{"Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009As7vAAC","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + string: '{"Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000002zK2CQAU","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' headers: User-Agent: - Faraday v2.4.0 @@ -129,12 +129,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:32:56 GMT + - Fri, 29 Sep 2023 21:10:40 GMT Set-Cookie: - - BrowserId=JTOgSDF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:56 + - BrowserId=pPXDK18MEe6WqO1PqYZEZA; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:40 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=13661/5000000 + - api-usage=684/5000000 Location: - - "/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IsjjiAAB" + - "/services/data/v58.0/sobjects/PricebookEntry/01u8N000003ce4PQAQ" Content-Type: - application/json;charset=UTF-8 Vary: @@ -158,11 +158,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01u7e00000IsjjiAAB","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"01u8N000003ce4PQAQ","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 21:10:40 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://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: '' @@ -181,12 +181,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:57 GMT + - Fri, 29 Sep 2023 21:10:40 GMT Set-Cookie: - - BrowserId=JYW4SzF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:57 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:57 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:57 + - BrowserId=pRysU18MEe6cp4MhMPTjlA; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:40 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=13664/5000000 + - api-usage=684/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: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Fri, 29 Sep 2023 21:10:40 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account + 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-08-02 00:00:00 UTC"}' + string: '{"Name":"REST Account 2023-09-29 00:00:00 UTC"}' headers: User-Agent: - Faraday v2.4.0 @@ -233,12 +233,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:32:57 GMT + - Fri, 29 Sep 2023 21:10:41 GMT Set-Cookie: - - BrowserId=JcctSjF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:57 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:57 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:57 + - BrowserId=pThKYF8MEe6kBBlvTwvkWQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:41 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=13644/5000000 + - api-usage=684/5000000 Location: - - "/services/data/v58.0/sobjects/Account/0017e00001iaMVWAA2" + - "/services/data/v58.0/sobjects/Account/0018N00000JKmEmQAL" Content-Type: - application/json;charset=UTF-8 Vary: @@ -262,11 +262,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0017e00001iaMVWAA2","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"0018N00000JKmEmQAL","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 21:10: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://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: '' @@ -285,12 +285,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:58 GMT + - Fri, 29 Sep 2023 21:10:41 GMT Set-Cookie: - - BrowserId=JicnrjF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:58 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:58 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:58 + - BrowserId=pXfEwl8MEe6doQESQuIQuQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:41 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=13645/5000000 + - api-usage=684/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: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Fri, 29 Sep 2023 21:10:41 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + 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-08-02 00:00:00 UTC","CloseDate":"2023-08-02","StageName":"Closed/Won","AccountId":"0017e00001iaMVWAA2"}' + string: '{"Name":"REST Opportunity 2023-09-29 00:00:00 UTC","CloseDate":"2023-09-29","StageName":"Closed/Won","AccountId":"0018N00000JKmEmQAL"}' headers: User-Agent: - Faraday v2.4.0 @@ -337,12 +337,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:32:58 GMT + - Fri, 29 Sep 2023 21:10:41 GMT Set-Cookie: - - BrowserId=JmbIyTF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:58 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:58 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:58 + - BrowserId=pZGOQl8MEe6avPkwqjwF2g; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:41 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=13646/5000000 + - api-usage=684/5000000 Location: - - "/services/data/v58.0/sobjects/Opportunity/0067e00000NfEWKAA3" + - "/services/data/v58.0/sobjects/Opportunity/0068N000006PoFmQAK" Content-Type: - application/json;charset=UTF-8 Vary: @@ -366,14 +366,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0067e00000NfEWKAA3","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"0068N000006PoFmQAK","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 21:10:41 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + 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":"no_translate_no_custom_filters@example.com"}' + string: '{"LastName":"Bianco","Email":"no_translate_no_custom_filters_4@example.com"}' headers: User-Agent: - Faraday v2.4.0 @@ -391,12 +391,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:32:59 GMT + - Fri, 29 Sep 2023 21:10:42 GMT Set-Cookie: - - BrowserId=JrbkqTF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:59 + - BrowserId=pcDcLF8MEe6_t9fOSQF8gw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:42 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=13647/5000000 + - api-usage=685/5000000 Location: - - "/services/data/v58.0/sobjects/Contact/0037e00001jI7oZAAS" + - "/services/data/v58.0/sobjects/Contact/0038N00000GEE5gQAH" Content-Type: - application/json;charset=UTF-8 Vary: @@ -420,14 +420,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0037e00001jI7oZAAS","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"0038N00000GEE5gQAH","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 21:10:42 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://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":"0067e00000NfEWKAA3","SBQQ__PrimaryContact__c":"0037e00001jI7oZAAS","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__StartDate__c":"2023-08-02","SBQQ__SubscriptionTerm__c":12}' + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0068N000006PoFmQAK","SBQQ__PrimaryContact__c":"0038N00000GEE5gQAH","SBQQ__PricebookId__c":"01s8N000002d0dzQAA","SBQQ__StartDate__c":"2023-09-29","SBQQ__SubscriptionTerm__c":12}' headers: User-Agent: - Faraday v2.4.0 @@ -445,12 +445,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:32:59 GMT + - Fri, 29 Sep 2023 21:10:42 GMT Set-Cookie: - - BrowserId=Jx71ZTF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:59 + - BrowserId=pfBP1l8MEe6Mpx-LZYdUxg; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:42 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=13673/5000000 + - api-usage=684/5000000 Location: - - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaxAAH" + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvfzQAA" Content-Type: - application/json;charset=UTF-8 Vary: @@ -474,11 +474,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a0z7e00000BDKaxAAH","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"a0z8N000000yvfzQAA","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 21:10:42 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://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: '' @@ -497,12 +497,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:00 GMT + - Fri, 29 Sep 2023 21:10:43 GMT Set-Cookie: - - BrowserId=J7goPjF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:00 + - BrowserId=plzNtV8MEe6paD9uZNlBrQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:43 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=13674/5000000 + - api-usage=684/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: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Fri, 29 Sep 2023 21:10:43 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z7e00000BDKaxAAH + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z8N000000yvfzQAA body: encoding: US-ASCII string: '' @@ -547,12 +547,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:01 GMT + - Fri, 29 Sep 2023 21:10:43 GMT Set-Cookie: - - BrowserId=J_X0nTF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:01 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:01 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:01 + - BrowserId=poANcl8MEe6iGtOYdb4BdQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:43 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\":\"a0z7e00000BDKaxAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaxAAH\"},\"Id\":\"a0z7e00000BDKaxAAH\",\"Name\":\"Q-01224\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMVWAA2\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-02\",\"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\":\"a0z8N000000yvfzQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvfzQAA\"},\"Id\":\"a0z8N000000yvfzQAA\",\"Name\":\"Q-00010\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKmEmQAL\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"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\":\"0067e00000NfEWKAA3\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMVWAA2\"},\"Id\":\"0017e00001iaMVWAA2\",\"Name\":\"REST - Account 2023-08-02 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/0067e00000NfEWKAA3\"},\"Id\":\"0067e00000NfEWKAA3\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKaxAAH\",\"AccountId\":\"0017e00001iaMVWAA2\"},\"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: Wed, 02 Aug 2023 21:22:26 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006PoFmQAK\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKmEmQAL\"},\"Id\":\"0018N00000JKmEmQAL\",\"Name\":\"REST + Account 2023-09-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/0068N000006PoFmQAK\"},\"Id\":\"0068N000006PoFmQAK\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvfzQAA\",\"AccountId\":\"0018N00000JKmEmQAL\"},\"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: Fri, 29 Sep 2023 21:10:43 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t7e000009As7vAAC + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t8N000002zK2CQAU body: encoding: UTF-8 - string: '{"context":"{\"pricebookId\":\"01s7e000002eLFEAA2\"}"}' + string: '{"context":"{\"pricebookId\":\"01s8N000002d0dzQAA\"}"}' headers: User-Agent: - Faraday v2.4.0 @@ -600,12 +600,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:02 GMT + - Fri, 29 Sep 2023 21:10:43 GMT Set-Cookie: - - BrowserId=KIsIzjF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:02 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:02 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:02 + - BrowserId=pu8iu18MEe6YVi3i9wy2Pw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:43 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/01t7e000009As7vAAC\"},\"Id\":\"01t7e000009As7vAAC\",\"Name\":\"REST - Product2 2023-08-02 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zK2CQAU\"},\"Id\":\"01t8N000002zK2CQAU\",\"Name\":\"REST + Product2 2023-09-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__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\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IsjjiAAB\"},\"Product2Id\":\"01t7e000009As7vAAC\",\"Id\":\"01u7e00000IsjjiAAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' - recorded_at: Wed, 02 Aug 2023 21:22:26 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\":\"Monthly\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01u8N000003ce4PQAQ\"},\"Product2Id\":\"01t8N000002zK2CQAU\",\"Id\":\"01u8N000003ce4PQAQ\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Fri, 29 Sep 2023 21:10:44 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://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\":\"a0z7e00000BDKaxAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaxAAH\"},\"Id\":\"a0z7e00000BDKaxAAH\",\"Name\":\"Q-01224\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMVWAA2\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-02\",\"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\":\"a0z8N000000yvfzQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvfzQAA\"},\"Id\":\"a0z8N000000yvfzQAA\",\"Name\":\"Q-00010\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKmEmQAL\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"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\":\"0067e00000NfEWKAA3\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMVWAA2\"},\"Id\":\"0017e00001iaMVWAA2\",\"Name\":\"REST - Account 2023-08-02 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/0067e00000NfEWKAA3\"},\"Id\":\"0067e00000NfEWKAA3\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKaxAAH\",\"AccountId\":\"0017e00001iaMVWAA2\"},\"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/01t7e000009As7vAAC\"},\"Id\":\"01t7e000009As7vAAC\",\"Name\":\"REST - Product2 2023-08-02 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\":\"0068N000006PoFmQAK\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKmEmQAL\"},\"Id\":\"0018N00000JKmEmQAL\",\"Name\":\"REST + Account 2023-09-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/0068N000006PoFmQAK\"},\"Id\":\"0068N000006PoFmQAK\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvfzQAA\",\"AccountId\":\"0018N00000JKmEmQAL\"},\"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/01t8N000002zK2CQAU\"},\"Id\":\"01t8N000002zK2CQAU\",\"Name\":\"REST + Product2 2023-09-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__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\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IsjjiAAB\"},\"Product2Id\":\"01t7e000009As7vAAC\",\"Id\":\"01u7e00000IsjjiAAB\",\"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\":\"Monthly\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01u8N000003ce4PQAQ\"},\"Product2Id\":\"01t8N000002zK2CQAU\",\"Id\":\"01u8N000003ce4PQAQ\",\"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 @@ -657,12 +657,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:03 GMT + - Fri, 29 Sep 2023 21:10:44 GMT Set-Cookie: - - BrowserId=KR69QzF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:03 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:03 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:03 + - BrowserId=p2k0w18MEe6B9SGa1e-7uQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:44 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\":\"a0z7e00000BDKaxAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaxAAH\"},\"Id\":\"a0z7e00000BDKaxAAH\",\"Name\":\"Q-01224\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMVWAA2\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-02\",\"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\":\"a0z8N000000yvfzQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvfzQAA\"},\"Id\":\"a0z8N000000yvfzQAA\",\"Name\":\"Q-00010\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKmEmQAL\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"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\":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\":\"0067e00000NfEWKAA3\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMVWAA2\"},\"Id\":\"0017e00001iaMVWAA2\",\"Name\":\"REST - Account 2023-08-02 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/0067e00000NfEWKAA3\"},\"Id\":\"0067e00000NfEWKAA3\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKaxAAH\",\"AccountId\":\"0017e00001iaMVWAA2\"},\"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\":1440.00,\"netNonSegmentTotal\":1440.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKaxAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKaxAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7vAAC\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IsjjiAAB\",\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0002639\",\"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\":12,\"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__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-08-02 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__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7vAAC\"},\"Id\":\"01t7e000009As7vAAC\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-02 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__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-02\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006PoFmQAK\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKmEmQAL\"},\"Id\":\"0018N00000JKmEmQAL\",\"Name\":\"REST + Account 2023-09-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/0068N000006PoFmQAK\"},\"Id\":\"0068N000006PoFmQAK\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvfzQAA\",\"AccountId\":\"0018N00000JKmEmQAL\"},\"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\":1440.00,\"netNonSegmentTotal\":1440.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvfzQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000yvfzQAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zK2CQAU\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u8N000003ce4PQAQ\",\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000026\",\"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\":12,\"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__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-09-29 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__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zK2CQAU\"},\"Id\":\"01t8N000002zK2CQAU\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 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__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-09-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Fri, 29 Sep 2023 21:10:46 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://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\":\"a0z7e00000BDKaxAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaxAAH\"},\"Id\":\"a0z7e00000BDKaxAAH\",\"Name\":\"Q-01224\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMVWAA2\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-02\",\"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\":\"a0z8N000000yvfzQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvfzQAA\"},\"Id\":\"a0z8N000000yvfzQAA\",\"Name\":\"Q-00010\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKmEmQAL\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"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\":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\":\"0067e00000NfEWKAA3\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMVWAA2\"},\"Id\":\"0017e00001iaMVWAA2\",\"Name\":\"REST - Account 2023-08-02 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/0067e00000NfEWKAA3\"},\"Id\":\"0067e00000NfEWKAA3\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKaxAAH\",\"AccountId\":\"0017e00001iaMVWAA2\"},\"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\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKaxAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKaxAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7vAAC\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IsjjiAAB\",\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0002639\",\"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\":12,\"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__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-08-02 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__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7vAAC\"},\"Id\":\"01t7e000009As7vAAC\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-02 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__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-02\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.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\":\"0068N000006PoFmQAK\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKmEmQAL\"},\"Id\":\"0018N00000JKmEmQAL\",\"Name\":\"REST + Account 2023-09-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/0068N000006PoFmQAK\"},\"Id\":\"0068N000006PoFmQAK\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvfzQAA\",\"AccountId\":\"0018N00000JKmEmQAL\"},\"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\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvfzQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000yvfzQAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zK2CQAU\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u8N000003ce4PQAQ\",\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000026\",\"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\":12,\"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__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-09-29 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__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zK2CQAU\"},\"Id\":\"01t8N000002zK2CQAU\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 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__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-09-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.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: - - Wed, 02 Aug 2023 21:33:04 GMT + - Fri, 29 Sep 2023 21:10:46 GMT Set-Cookie: - - BrowserId=KjJ3DDF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:04 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:04 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:04 + - BrowserId=qFqZm18MEe6doQESQuIQuQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:46 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\":\"a0z7e00000BDKaxAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaxAAH\"},\"Id\":\"a0z7e00000BDKaxAAH\",\"Name\":\"Q-01224\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMVWAA2\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-02\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvfzQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvfzQAA\"},\"Id\":\"a0z8N000000yvfzQAA\",\"Name\":\"Q-00010\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKmEmQAL\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"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\":\"0067e00000NfEWKAA3\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMVWAA2\"},\"Id\":\"0017e00001iaMVWAA2\",\"Name\":\"REST - Account 2023-08-02 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/0067e00000NfEWKAA3\"},\"Id\":\"0067e00000NfEWKAA3\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKaxAAH\",\"AccountId\":\"0017e00001iaMVWAA2\"},\"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\":1440.00,\"netNonSegmentTotal\":1440.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKaxAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKaxAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7vAAC\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IsjjiAAB\",\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0002640\",\"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\":12,\"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__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-08-02 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__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7vAAC\"},\"Id\":\"01t7e000009As7vAAC\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-02 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__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-02\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006PoFmQAK\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKmEmQAL\"},\"Id\":\"0018N00000JKmEmQAL\",\"Name\":\"REST + Account 2023-09-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/0068N000006PoFmQAK\"},\"Id\":\"0068N000006PoFmQAK\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvfzQAA\",\"AccountId\":\"0018N00000JKmEmQAL\"},\"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\":1440.00,\"netNonSegmentTotal\":1440.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvfzQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000yvfzQAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zK2CQAU\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u8N000003ce4PQAQ\",\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000027\",\"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\":12,\"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__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-09-29 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__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zK2CQAU\"},\"Id\":\"01t8N000002zK2CQAU\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 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__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-09-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Fri, 29 Sep 2023 21:10:47 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + 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\":\"a0z7e00000BDKaxAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaxAAH\"},\"Id\":\"a0z7e00000BDKaxAAH\",\"Name\":\"Q-01224\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMVWAA2\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-02\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__ContractingMethod__c\":\"By + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvfzQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvfzQAA\"},\"Id\":\"a0z8N000000yvfzQAA\",\"Name\":\"Q-00010\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKmEmQAL\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"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\":\"0067e00000NfEWKAA3\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMVWAA2\"},\"Id\":\"0017e00001iaMVWAA2\",\"Name\":\"REST - Account 2023-08-02 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/0067e00000NfEWKAA3\"},\"Id\":\"0067e00000NfEWKAA3\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKaxAAH\",\"AccountId\":\"0017e00001iaMVWAA2\"},\"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\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKaxAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKaxAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7vAAC\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IsjjiAAB\",\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0002640\",\"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\":12,\"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__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-08-02 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__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7vAAC\"},\"Id\":\"01t7e000009As7vAAC\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-02 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__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-02\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.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\":\"0068N000006PoFmQAK\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKmEmQAL\"},\"Id\":\"0018N00000JKmEmQAL\",\"Name\":\"REST + Account 2023-09-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/0068N000006PoFmQAK\"},\"Id\":\"0068N000006PoFmQAK\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvfzQAA\",\"AccountId\":\"0018N00000JKmEmQAL\"},\"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\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvfzQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000yvfzQAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zK2CQAU\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u8N000003ce4PQAQ\",\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000027\",\"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\":12,\"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__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-09-29 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__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zK2CQAU\"},\"Id\":\"01t8N000002zK2CQAU\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 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__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-09-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.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: - - Wed, 02 Aug 2023 21:33:06 GMT + - Fri, 29 Sep 2023 21:10:47 GMT Set-Cookie: - - BrowserId=KxhDWjF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:06 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:06 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:06 + - BrowserId=qRFlz18MEe6nfRHpcPFuBQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:47 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\":\"a0z7e00000BDKaxAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaxAAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEWKAA3\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKaxAAH\",\"AccountId\":\"0017e00001iaMVWAA2\",\"Id\":\"0067e00000NfEWKAA3\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMVWAA2\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iaMVWAA2\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-02 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-01224\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.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\":\"0017e00001iaMVWAA2\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-02\",\"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\":\"0067e00000NfEWKAA3\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDKaxAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKaxAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXt9AAE\"},\"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-02 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\":\"a0z7e00000BDKaxAAH\",\"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\":\"a0v7e000008xXt9AAE\",\"SBQQ__EffectiveSubscriptionTerm__c\":12.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\":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\":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-0002640\",\"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\":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\":\"01u7e00000IsjjiAAB\",\"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/v58.0/sobjects/Product2/01t7e000009As7vAAC\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t7e000009As7vAAC\",\"Name\":\"REST - Product2 2023-08-02 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t7e000009As7vAAC\",\"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-02\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvfzQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvfzQAA\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0068N000006PoFmQAK\"},\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvfzQAA\",\"AccountId\":\"0018N00000JKmEmQAL\",\"Id\":\"0068N000006PoFmQAK\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKmEmQAL\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0018N00000JKmEmQAL\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-09-29 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00010\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.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\":\"0018N00000JKmEmQAL\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-09-29\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0068N000006PoFmQAK\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z8N000000yvfzQAA\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvfzQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpPJQA0\"},\"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-09-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\":\"a0z8N000000yvfzQAA\",\"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\":\"a0v8N000002SpPJQA0\",\"SBQQ__EffectiveSubscriptionTerm__c\":12.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\":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\":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-0000027\",\"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\":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\":\"01u8N000003ce4PQAQ\",\"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/v58.0/sobjects/Product2/01t8N000002zK2CQAU\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000002zK2CQAU\",\"Name\":\"REST + Product2 2023-09-29 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000002zK2CQAU\",\"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-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Fri, 29 Sep 2023 21:10:47 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaxAAH + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvfzQAA body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -838,12 +838,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:33:07 GMT + - Fri, 29 Sep 2023 21:10:48 GMT Set-Cookie: - - BrowserId=K3_e4zF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:07 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:07 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:07 + - BrowserId=qV7qOF8MEe6E5X1Ey17tEQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:48 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=13688/5000000 + - api-usage=686/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:10:49 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaxAAH/SBQQ__Orders__r + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z8N000000yvfzQAA/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -884,12 +884,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:08 GMT + - Fri, 29 Sep 2023 21:10:49 GMT Set-Cookie: - - BrowserId=LJxx6DF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:08 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:08 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:08 + - BrowserId=qiAXb18MEe6avPkwqjwF2g; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:49 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=13687/5000000 + - api-usage=687/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -911,13 +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/8017e000000nR85AAE"},"Id":"8017e000000nR85AAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMVWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEWKAA3","EffectiveDate":"2023-08-02","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":"00001307","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:33:07.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:08.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:33:08.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":"a0z7e00000BDKaxAAH","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8018N0000002yWvQAI"},"Id":"8018N0000002yWvQAI","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKmEmQAL","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006PoFmQAK","EffectiveDate":"2023-09-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":"00000110","TotalAmount":1440.0,"CreatedDate":"2023-09-29T21:10:48.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:49.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T21:10:49.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":"a0z8N000000yvfzQAA","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Fri, 29 Sep 2023 21:10:49 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR85AAE + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yWvQAI body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -938,12 +937,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:33:09 GMT + - Fri, 29 Sep 2023 21:10:49 GMT Set-Cookie: - - BrowserId=LOG4GDF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:09 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:09 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:09 + - BrowserId=qjpVlF8MEe6iGtOYdb4BdQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -958,14 +957,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13689/5000000 + - api-usage=687/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:10:50 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR85AAE + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yWvQAI body: encoding: US-ASCII string: '' @@ -984,12 +983,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:10 GMT + - Fri, 29 Sep 2023 21:10:50 GMT Set-Cookie: - - BrowserId=LVujhjF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:10 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:10 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:10 + - BrowserId=qp_1-F8MEe6paD9uZNlBrQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:50 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1002,9 +1001,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13683/5000000 + - api-usage=687/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:33:09 GMT + - Fri, 29 Sep 2023 21:10:50 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -1013,13 +1012,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR85AAE"},"Id":"8017e000000nR85AAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMVWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEWKAA3","EffectiveDate":"2023-08-02","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-02T21:33:09.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001307","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:33:07.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:09.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:33:09.000+0000","LastViewedDate":"2023-08-02T21:33:09.000+0000","LastReferencedDate":"2023-08-02T21:33:09.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N0000002yWvQAI"},"Id":"8018N0000002yWvQAI","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKmEmQAL","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006PoFmQAK","EffectiveDate":"2023-09-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-09-29T21:10:49.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000110","TotalAmount":1440.0,"CreatedDate":"2023-09-29T21:10:48.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:50.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T21:10:50.000+0000","LastViewedDate":"2023-09-29T21:10:49.000+0000","LastReferencedDate":"2023-09-29T21:10:49.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":"a0z7e00000BDKaxAAH","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Wed, 02 Aug 2023 21:22:26 GMT + Needed","SBQQ__Quote__c":"a0z8N000000yvfzQAA","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Fri, 29 Sep 2023 21:10:50 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR85AAE + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yWvQAI body: encoding: UTF-8 string: '{"SBQQ__Contracted__c":true}' @@ -1040,12 +1039,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:33:10 GMT + - Fri, 29 Sep 2023 21:10:50 GMT Set-Cookie: - - BrowserId=LaYZ7jF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:10 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:10 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:10 + - BrowserId=qr22bV8MEe6iGtOYdb4BdQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:50 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1060,14 +1059,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13688/5000000 + - api-usage=688/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:10: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%20Contract%20WHERE%20SBQQ__Order__c%20=%20%278017e000000nR85AAE%27 + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Contract%20WHERE%20SBQQ__Order__c%20=%20%278018N0000002yWvQAI%27 body: encoding: US-ASCII string: '' @@ -1086,12 +1085,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:12 GMT + - Fri, 29 Sep 2023 21:10:51 GMT Set-Cookie: - - BrowserId=LvsjEzF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:12 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:12 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:12 + - BrowserId=q7RylV8MEe63JXvdedQYag; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:52 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1104,7 +1103,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13672/5000000 + - api-usage=686/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1113,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/8007e000001iCJkAAM"},"Id":"8007e000001iCJkAAM"}]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8008N000000gHi8QAE"},"Id":"8008N000000gHi8QAE"}]}' + recorded_at: Fri, 29 Sep 2023 21:10:51 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contract/8007e000001iCJkAAM + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contract/8008N000000gHi8QAE body: encoding: US-ASCII string: '' @@ -1136,12 +1135,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:13 GMT + - Fri, 29 Sep 2023 21:10:52 GMT Set-Cookie: - - BrowserId=LzTPwjF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:13 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:13 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:13 + - BrowserId=q814nF8MEe6paD9uZNlBrQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:52 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1154,9 +1153,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13673/5000000 + - api-usage=688/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:33:12 GMT + - Fri, 29 Sep 2023 21:10:51 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -1165,12 +1164,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJkAAM"},"Id":"8007e000001iCJkAAM","AccountId":"0017e00001iaMVWAA2","Pricebook2Id":null,"OwnerExpirationNotice":null,"StartDate":"2023-08-02","EndDate":"2024-08-01","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ContractTerm":12,"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":"00000330","LastApprovedDate":null,"CreatedDate":"2023-08-02T21:33:11.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:33:12.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":"2024-08-01","SBQQ__MDQRenewalBehavior__c":null,"SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0067e00000NfEWKAA3","SBQQ__Order__c":"8017e000000nR85AAE","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z7e00000BDKaxAAH","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":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0.0,"SBQQ__OpportunityPricebookId__c":null}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8008N000000gHi8QAE"},"Id":"8008N000000gHi8QAE","AccountId":"0018N00000JKmEmQAL","Pricebook2Id":null,"OwnerExpirationNotice":null,"StartDate":"2023-09-29","EndDate":"2024-09-28","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ContractTerm":12,"OwnerId":"0058N000004zYG5QAM","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":"00000104","LastApprovedDate":null,"CreatedDate":"2023-09-29T21:10:51.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:51.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:51.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":"2024-09-28","SBQQ__MDQRenewalBehavior__c":null,"SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0068N000006PoFmQAK","SBQQ__Order__c":"8018N0000002yWvQAI","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z8N000000yvfzQAA","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":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0.0,"SBQQ__OpportunityPricebookId__c":null}' + recorded_at: Fri, 29 Sep 2023 21:10:52 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ContractManipulationAPI.ContractAmender&uid=8007e000001iCJkAAM + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ContractManipulationAPI.ContractAmender&uid=8008N000000gHi8QAE body: encoding: UTF-8 string: "{}" @@ -1191,12 +1190,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:13 GMT + - Fri, 29 Sep 2023 21:10:52 GMT Set-Cookie: - - BrowserId=L3dXDjF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:13 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:13 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:13 + - BrowserId=q-v96F8MEe6cp4MhMPTjlA; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:52 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1214,28 +1213,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKb2AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKb2AAH\"},\"Id\":\"a0z7e00000BDKb2AAH\",\"Name\":\"Q-01225\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaMVWAA2\",\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-02\",\"SBQQ__EndDate__c\":\"2024-08-01\",\"SBQQ__MasterContract__c\":\"8007e000001iCJkAAM\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvg4QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvg4QAA\"},\"Id\":\"a0z8N000000yvg4QAA\",\"Name\":\"Q-00011\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0018N00000JKmEmQAL\",\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"SBQQ__EndDate__c\":\"2024-09-28\",\"SBQQ__MasterContract__c\":\"8008N000000gHi8QAE\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12,\"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\":\"0067e00000NfEe3AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMVWAA2\"},\"Id\":\"0017e00001iaMVWAA2\",\"Name\":\"REST - Account 2023-08-02 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/8007e000001iCJkAAM\"},\"Id\":\"8007e000001iCJkAAM\",\"ContractNumber\":\"00000330\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEe3AAF\"},\"Id\":\"0067e00000NfEe3AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKb2AAH\",\"AccountId\":\"0017e00001iaMVWAA2\"},\"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\":\"a0z7e00000BDKb2AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXtFAAU\"},\"Id\":\"a0v7e000008xXtFAAU\",\"SBQQ__Quote__c\":\"a0z7e00000BDKb2AAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7vAAC\",\"SBQQ__Number__c\":1,\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0002642\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.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\":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__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-08-02 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.00,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX4ysEAD\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7vAAC\"},\"Id\":\"01t7e000009As7vAAC\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-02 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX4ysEAD\"},\"Id\":\"a1B7e00000EX4ysEAD\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXt9AAE\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXt9AAE\",\"SBQQ__Contract__c\":\"8007e000001iCJkAAM\"},\"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__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-02\",\"effectiveEndDate\":\"2024-08-01\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006PoFrQAK\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKmEmQAL\"},\"Id\":\"0018N00000JKmEmQAL\",\"Name\":\"REST + Account 2023-09-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/8008N000000gHi8QAE\"},\"Id\":\"8008N000000gHi8QAE\",\"ContractNumber\":\"00000104\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0068N000006PoFrQAK\"},\"Id\":\"0068N000006PoFrQAK\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvg4QAA\",\"AccountId\":\"0018N00000JKmEmQAL\"},\"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\":\"a0z8N000000yvg4QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpPPQA0\"},\"Id\":\"a0v8N000002SpPPQA0\",\"SBQQ__Quote__c\":\"a0z8N000000yvg4QAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zK2CQAU\",\"SBQQ__Number__c\":1,\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000029\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.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\":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__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-09-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\":1440.00,\"SBQQ__UpgradedSubscription__c\":\"a1B8N0000015OULUA2\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zK2CQAU\"},\"Id\":\"01t8N000002zK2CQAU\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B8N0000015OULUA2\"},\"Id\":\"a1B8N0000015OULUA2\",\"SBQQ__QuoteLine__c\":\"a0v8N000002SpPJQA0\",\"SBQQ__OriginalQuoteLine__c\":\"a0v8N000002SpPJQA0\",\"SBQQ__Contract__c\":\"8008N000000gHi8QAE\"},\"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__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-09-29\",\"effectiveEndDate\":\"2024-09-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Fri, 29 Sep 2023 21:10:54 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://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\":\"a0z7e00000BDKb2AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKb2AAH\"},\"Id\":\"a0z7e00000BDKb2AAH\",\"Name\":\"Q-01225\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaMVWAA2\",\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-02\",\"SBQQ__EndDate__c\":\"2024-08-01\",\"SBQQ__MasterContract__c\":\"8007e000001iCJkAAM\",\"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\":\"a0z8N000000yvg4QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvg4QAA\"},\"Id\":\"a0z8N000000yvg4QAA\",\"Name\":\"Q-00011\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0018N00000JKmEmQAL\",\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"SBQQ__EndDate__c\":\"2024-09-28\",\"SBQQ__MasterContract__c\":\"8008N000000gHi8QAE\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12,\"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\":\"0067e00000NfEe3AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMVWAA2\"},\"Id\":\"0017e00001iaMVWAA2\",\"Name\":\"REST - Account 2023-08-02 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/8007e000001iCJkAAM\"},\"Id\":\"8007e000001iCJkAAM\",\"ContractNumber\":\"00000330\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEe3AAF\"},\"Id\":\"0067e00000NfEe3AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKb2AAH\",\"AccountId\":\"0017e00001iaMVWAA2\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":12,\"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\":\"a0z7e00000BDKb2AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXtFAAU\"},\"Id\":\"a0v7e000008xXtFAAU\",\"SBQQ__Quote__c\":\"a0z7e00000BDKb2AAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7vAAC\",\"SBQQ__Number__c\":1,\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0002642\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.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\":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\":2,\"SBQQ__SpecialPrice__c\":120.0,\"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-08-02 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX4ysEAD\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7vAAC\"},\"Id\":\"01t7e000009As7vAAC\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-02 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX4ysEAD\"},\"Id\":\"a1B7e00000EX4ysEAD\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXt9AAE\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXt9AAE\",\"SBQQ__Contract__c\":\"8007e000001iCJkAAM\"},\"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__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-02\",\"effectiveEndDate\":\"2024-08-01\",\"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\":\"0068N000006PoFrQAK\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKmEmQAL\"},\"Id\":\"0018N00000JKmEmQAL\",\"Name\":\"REST + Account 2023-09-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/8008N000000gHi8QAE\"},\"Id\":\"8008N000000gHi8QAE\",\"ContractNumber\":\"00000104\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0068N000006PoFrQAK\"},\"Id\":\"0068N000006PoFrQAK\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvg4QAA\",\"AccountId\":\"0018N00000JKmEmQAL\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":12,\"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\":\"a0z8N000000yvg4QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpPPQA0\"},\"Id\":\"a0v8N000002SpPPQA0\",\"SBQQ__Quote__c\":\"a0z8N000000yvg4QAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zK2CQAU\",\"SBQQ__Number__c\":1,\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000029\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.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\":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\":2,\"SBQQ__SpecialPrice__c\":120.0,\"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-09-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\":1440.0,\"SBQQ__UpgradedSubscription__c\":\"a1B8N0000015OULUA2\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zK2CQAU\"},\"Id\":\"01t8N000002zK2CQAU\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B8N0000015OULUA2\"},\"Id\":\"a1B8N0000015OULUA2\",\"SBQQ__QuoteLine__c\":\"a0v8N000002SpPJQA0\",\"SBQQ__OriginalQuoteLine__c\":\"a0v8N000002SpPJQA0\",\"SBQQ__Contract__c\":\"8008N000000gHi8QAE\"},\"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__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-09-29\",\"effectiveEndDate\":\"2024-09-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 @@ -1253,12 +1252,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:16 GMT + - Fri, 29 Sep 2023 21:10:55 GMT Set-Cookie: - - BrowserId=MR1m3DF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:16 + - BrowserId=rYVh918MEe6YVi3i9wy2Pw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:55 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:55 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:55 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1276,28 +1275,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKb2AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKb2AAH\"},\"Id\":\"a0z7e00000BDKb2AAH\",\"Name\":\"Q-01225\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaMVWAA2\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-02\",\"SBQQ__EndDate__c\":\"2024-08-01\",\"SBQQ__MasterContract__c\":\"8007e000001iCJkAAM\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvg4QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvg4QAA\"},\"Id\":\"a0z8N000000yvg4QAA\",\"Name\":\"Q-00011\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0018N00000JKmEmQAL\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"SBQQ__EndDate__c\":\"2024-09-28\",\"SBQQ__MasterContract__c\":\"8008N000000gHi8QAE\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12,\"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\":\"0067e00000NfEe3AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMVWAA2\"},\"Id\":\"0017e00001iaMVWAA2\",\"Name\":\"REST - Account 2023-08-02 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/8007e000001iCJkAAM\"},\"Id\":\"8007e000001iCJkAAM\",\"ContractNumber\":\"00000330\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEe3AAF\"},\"Id\":\"0067e00000NfEe3AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKb2AAH\",\"AccountId\":\"0017e00001iaMVWAA2\"},\"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\":1440.00,\"netNonSegmentTotal\":1440.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKb2AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXtFAAU\"},\"Id\":\"a0v7e000008xXtFAAU\",\"SBQQ__Quote__c\":\"a0z7e00000BDKb2AAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7vAAC\",\"SBQQ__Number__c\":1,\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0002643\",\"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\":12,\"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\":2.00,\"SBQQ__SpecialPrice__c\":120.00,\"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-08-02 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.00,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.00,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX4ysEAD\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7vAAC\"},\"Id\":\"01t7e000009As7vAAC\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-02 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX4ysEAD\"},\"Id\":\"a1B7e00000EX4ysEAD\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXt9AAE\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXt9AAE\",\"SBQQ__Contract__c\":\"8007e000001iCJkAAM\"},\"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__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-02\",\"effectiveEndDate\":\"2024-08-01\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0068N000006PoFrQAK\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKmEmQAL\"},\"Id\":\"0018N00000JKmEmQAL\",\"Name\":\"REST + Account 2023-09-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/8008N000000gHi8QAE\"},\"Id\":\"8008N000000gHi8QAE\",\"ContractNumber\":\"00000104\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0068N000006PoFrQAK\"},\"Id\":\"0068N000006PoFrQAK\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvg4QAA\",\"AccountId\":\"0018N00000JKmEmQAL\"},\"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\":1440.00,\"netNonSegmentTotal\":1440.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvg4QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpPPQA0\"},\"Id\":\"a0v8N000002SpPPQA0\",\"SBQQ__Quote__c\":\"a0z8N000000yvg4QAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zK2CQAU\",\"SBQQ__Number__c\":1,\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000030\",\"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\":12,\"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\":2.00,\"SBQQ__SpecialPrice__c\":120.00,\"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-09-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\":1440.00,\"SBQQ__UpgradedSubscription__c\":\"a1B8N0000015OULUA2\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zK2CQAU\"},\"Id\":\"01t8N000002zK2CQAU\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B8N0000015OULUA2\"},\"Id\":\"a1B8N0000015OULUA2\",\"SBQQ__QuoteLine__c\":\"a0v8N000002SpPJQA0\",\"SBQQ__OriginalQuoteLine__c\":\"a0v8N000002SpPJQA0\",\"SBQQ__Contract__c\":\"8008N000000gHi8QAE\"},\"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__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-29\",\"effectiveEndDate\":\"2024-09-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Fri, 29 Sep 2023 21:10:55 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + 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\":\"a0z7e00000BDKb2AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKb2AAH\"},\"Id\":\"a0z7e00000BDKb2AAH\",\"Name\":\"Q-01225\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaMVWAA2\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-02\",\"SBQQ__EndDate__c\":\"2024-08-01\",\"SBQQ__MasterContract__c\":\"8007e000001iCJkAAM\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__ContractingMethod__c\":\"By + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvg4QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvg4QAA\"},\"Id\":\"a0z8N000000yvg4QAA\",\"Name\":\"Q-00011\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0018N00000JKmEmQAL\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"SBQQ__EndDate__c\":\"2024-09-28\",\"SBQQ__MasterContract__c\":\"8008N000000gHi8QAE\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__ContractingMethod__c\":\"By Subscription End Date\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12,\"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\":\"0067e00000NfEe3AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMVWAA2\"},\"Id\":\"0017e00001iaMVWAA2\",\"Name\":\"REST - Account 2023-08-02 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/8007e000001iCJkAAM\"},\"Id\":\"8007e000001iCJkAAM\",\"ContractNumber\":\"00000330\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEe3AAF\"},\"Id\":\"0067e00000NfEe3AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKb2AAH\",\"AccountId\":\"0017e00001iaMVWAA2\"},\"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\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKb2AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXtFAAU\"},\"Id\":\"a0v7e000008xXtFAAU\",\"SBQQ__Quote__c\":\"a0z7e00000BDKb2AAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7vAAC\",\"SBQQ__Number__c\":1,\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0002643\",\"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\":12,\"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\":2.0,\"SBQQ__SpecialPrice__c\":120.0,\"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-08-02 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX4ysEAD\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7vAAC\"},\"Id\":\"01t7e000009As7vAAC\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST - Product2 2023-08-02 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX4ysEAD\"},\"Id\":\"a1B7e00000EX4ysEAD\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXt9AAE\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXt9AAE\",\"SBQQ__Contract__c\":\"8007e000001iCJkAAM\"},\"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__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-02\",\"effectiveEndDate\":\"2024-08-01\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.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\":\"0068N000006PoFrQAK\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKmEmQAL\"},\"Id\":\"0018N00000JKmEmQAL\",\"Name\":\"REST + Account 2023-09-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/8008N000000gHi8QAE\"},\"Id\":\"8008N000000gHi8QAE\",\"ContractNumber\":\"00000104\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0068N000006PoFrQAK\"},\"Id\":\"0068N000006PoFrQAK\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvg4QAA\",\"AccountId\":\"0018N00000JKmEmQAL\"},\"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\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvg4QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpPPQA0\"},\"Id\":\"a0v8N000002SpPPQA0\",\"SBQQ__Quote__c\":\"a0z8N000000yvg4QAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zK2CQAU\",\"SBQQ__Number__c\":1,\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000030\",\"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\":12,\"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\":2.0,\"SBQQ__SpecialPrice__c\":120.0,\"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-09-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\":1440.0,\"SBQQ__UpgradedSubscription__c\":\"a1B8N0000015OULUA2\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zK2CQAU\"},\"Id\":\"01t8N000002zK2CQAU\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B8N0000015OULUA2\"},\"Id\":\"a1B8N0000015OULUA2\",\"SBQQ__QuoteLine__c\":\"a0v8N000002SpPJQA0\",\"SBQQ__OriginalQuoteLine__c\":\"a0v8N000002SpPJQA0\",\"SBQQ__Contract__c\":\"8008N000000gHi8QAE\"},\"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__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-29\",\"effectiveEndDate\":\"2024-09-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' headers: User-Agent: - Faraday v2.4.0 @@ -1315,12 +1314,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:18 GMT + - Fri, 29 Sep 2023 21:10:56 GMT Set-Cookie: - - BrowserId=MmSMWzF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:18 + - BrowserId=rjGAg18MEe6B9SGa1e-7uQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:56 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1340,18 +1339,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKb2AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKb2AAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEe3AAF\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKb2AAH\",\"AccountId\":\"0017e00001iaMVWAA2\",\"Id\":\"0067e00000NfEe3AAF\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMVWAA2\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iaMVWAA2\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-02 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-01225\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__EndDate__c\":\"2024-08-01\",\"SBQQ__PricebookId__c\":null,\"SBQQ__Account__c\":\"0017e00001iaMVWAA2\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-02\",\"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/8007e000001iCJkAAM\"},\"ContractNumber\":\"00000330\",\"Id\":\"8007e000001iCJkAAM\"},\"SBQQ__Opportunity2__c\":\"0067e00000NfEe3AAF\",\"SBQQ__MasterContract__c\":\"8007e000001iCJkAAM\",\"SBQQ__LineItemCount__c\":1.0,\"Id\":\"a0z7e00000BDKb2AAH\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12.0},\"nextKey\":2,\"netTotal\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKb2AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXtFAAU\"},\"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-02 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\":\"a0z7e00000BDKb2AAH\",\"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\":\"a0v7e000008xXtFAAU\",\"SBQQ__EffectiveSubscriptionTerm__c\":12.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"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/a1B7e00000EX4ysEAD\"},\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXt9AAE\",\"SBQQ__Contract__c\":\"8007e000001iCJkAAM\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXt9AAE\",\"Id\":\"a1B7e00000EX4ysEAD\"},\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX4ysEAD\",\"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\":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-0002643\",\"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\":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\":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/v58.0/sobjects/Product2/01t7e000009As7vAAC\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t7e000009As7vAAC\",\"Name\":\"REST - Product2 2023-08-02 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t7e000009As7vAAC\",\"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-02\",\"effectiveEndDate\":\"2024-08-01\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvg4QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvg4QAA\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0068N000006PoFrQAK\"},\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvg4QAA\",\"AccountId\":\"0018N00000JKmEmQAL\",\"Id\":\"0068N000006PoFrQAK\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKmEmQAL\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0018N00000JKmEmQAL\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-09-29 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00011\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__EndDate__c\":\"2024-09-28\",\"SBQQ__PricebookId__c\":null,\"SBQQ__Account__c\":\"0018N00000JKmEmQAL\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-09-29\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"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/8008N000000gHi8QAE\"},\"ContractNumber\":\"00000104\",\"Id\":\"8008N000000gHi8QAE\"},\"SBQQ__Opportunity2__c\":\"0068N000006PoFrQAK\",\"SBQQ__MasterContract__c\":\"8008N000000gHi8QAE\",\"SBQQ__LineItemCount__c\":1.0,\"Id\":\"a0z8N000000yvg4QAA\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12.0},\"nextKey\":2,\"netTotal\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvg4QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpPPQA0\"},\"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-09-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\":\"a0z8N000000yvg4QAA\",\"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\":\"a0v8N000002SpPPQA0\",\"SBQQ__EffectiveSubscriptionTerm__c\":12.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"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/a1B8N0000015OULUA2\"},\"SBQQ__OriginalQuoteLine__c\":\"a0v8N000002SpPJQA0\",\"SBQQ__Contract__c\":\"8008N000000gHi8QAE\",\"SBQQ__QuoteLine__c\":\"a0v8N000002SpPJQA0\",\"Id\":\"a1B8N0000015OULUA2\"},\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":\"a1B8N0000015OULUA2\",\"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\":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-0000030\",\"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\":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\":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/v58.0/sobjects/Product2/01t8N000002zK2CQAU\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000002zK2CQAU\",\"Name\":\"REST + Product2 2023-09-29 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000002zK2CQAU\",\"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-29\",\"effectiveEndDate\":\"2024-09-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Fri, 29 Sep 2023 21:10:56 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://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: '' @@ -1370,12 +1369,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:19 GMT + - Fri, 29 Sep 2023 21:10:56 GMT Set-Cookie: - - BrowserId=MtzwyTF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:19 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:19 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:19 + - BrowserId=rncU2l8MEe6doQESQuIQuQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:56 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1388,7 +1387,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13666/5000000 + - api-usage=690/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1397,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: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Fri, 29 Sep 2023 21:10:56 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKb2AAH + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvg4QAA body: encoding: UTF-8 - string: '{"SBQQ__PricebookId__c":"01s7e000002eLFEAA2"}' + string: '{"SBQQ__PricebookId__c":"01s8N000002d0dzQAA"}' headers: User-Agent: - Faraday v2.4.0 @@ -1422,12 +1421,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:33:19 GMT + - Fri, 29 Sep 2023 21:10:56 GMT Set-Cookie: - - BrowserId=MyHCDjF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:19 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:19 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:19 + - BrowserId=rpC3xV8MEe6iGtOYdb4BdQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:56 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1442,14 +1441,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13667/5000000 + - api-usage=691/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:10:58 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKb2AAH + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvg4QAA body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -1470,12 +1469,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:33:21 GMT + - Fri, 29 Sep 2023 21:10:58 GMT Set-Cookie: - - BrowserId=NF9LDzF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:21 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:21 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:21 + - BrowserId=r55XEV8MEe6paD9uZNlBrQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:10:58 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:58 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:10:58 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1490,14 +1489,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13691/5000000 + - api-usage=693/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:10:59 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKb2AAH/SBQQ__Orders__r + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z8N000000yvg4QAA/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -1516,12 +1515,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:23 GMT + - Fri, 29 Sep 2023 21:11:00 GMT Set-Cookie: - - BrowserId=NXWcgTF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:23 + - BrowserId=sIbifl8MEe6nfRHpcPFuBQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:00 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1534,7 +1533,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13690/5000000 + - api-usage=692/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1543,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/8017e000000nR5LAAU"},"Id":"8017e000000nR5LAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMVWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEe3AAF","EffectiveDate":"2023-08-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":"00001308","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:33:22.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:23.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:33:23.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":"a0z7e00000BDKb2AAH","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8018N0000002yX0QAI"},"Id":"8018N0000002yX0QAI","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKmEmQAL","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006PoFrQAK","EffectiveDate":"2023-09-29","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":"00000111","TotalAmount":1440.0,"CreatedDate":"2023-09-29T21:10:59.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:59.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T21:10: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":"a0z8N000000yvg4QAA","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Fri, 29 Sep 2023 21:11:00 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR5LAAU + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yX0QAI body: encoding: US-ASCII string: '' @@ -1567,12 +1566,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:24 GMT + - Fri, 29 Sep 2023 21:11:01 GMT Set-Cookie: - - BrowserId=NcNuizF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:24 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:24 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:24 + - BrowserId=sT3Wml8MEe63JXvdedQYag; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1585,9 +1584,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13695/5000000 + - api-usage=692/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:33:23 GMT + - Fri, 29 Sep 2023 21:10:59 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -1596,13 +1595,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR5LAAU"},"Id":"8017e000000nR5LAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMVWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEe3AAF","EffectiveDate":"2023-08-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":"00001308","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:33:22.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:23.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:33:23.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":"a0z7e00000BDKb2AAH","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N0000002yX0QAI"},"Id":"8018N0000002yX0QAI","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKmEmQAL","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006PoFrQAK","EffectiveDate":"2023-09-29","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":"00000111","TotalAmount":1440.0,"CreatedDate":"2023-09-29T21:10:59.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:59.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T21:10: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":"a0z8N000000yvg4QAA","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Fri, 29 Sep 2023 21:11:01 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR5LAAU + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yX0QAI body: encoding: US-ASCII string: '' @@ -1621,12 +1619,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:24 GMT + - Fri, 29 Sep 2023 21:11:01 GMT Set-Cookie: - - BrowserId=NiCCrDF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:24 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:24 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:24 + - BrowserId=sVyByl8MEe6doQESQuIQuQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1639,9 +1637,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13711/5000000 + - api-usage=694/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:33:23 GMT + - Fri, 29 Sep 2023 21:10:59 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -1650,16 +1648,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR5LAAU"},"Id":"8017e000000nR5LAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMVWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEe3AAF","EffectiveDate":"2023-08-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":"00001308","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:33:22.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:23.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:33:23.000+0000","LastViewedDate":"2023-08-02T21:33:24.000+0000","LastReferencedDate":"2023-08-02T21:33:24.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":"a0z7e00000BDKb2AAH","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N0000002yX0QAI"},"Id":"8018N0000002yX0QAI","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKmEmQAL","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006PoFrQAK","EffectiveDate":"2023-09-29","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":"00000111","TotalAmount":1440.0,"CreatedDate":"2023-09-29T21:10:59.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:59.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T21:10:59.000+0000","LastViewedDate":"2023-09-29T21:11:01.000+0000","LastReferencedDate":"2023-09-29T21:11: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":"Queued","SBQQ__Quote__c":"a0z8N000000yvg4QAA","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Fri, 29 Sep 2023 21:11:01 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nR5LAAU"]}' + string: '{"order_ids":["8018N0000002yX0QAI"]}' headers: User-Agent: - Faraday v2.4.0 @@ -1677,12 +1674,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:25 GMT + - Fri, 29 Sep 2023 21:11:01 GMT Set-Cookie: - - BrowserId=NmRCtDF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:25 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:25 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:25 + - BrowserId=sXsGlV8MEe6nfRHpcPFuBQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1702,39 +1699,39 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEe3AAF"},"Id":"0067e00000NfEe3AAF","IsDeleted":false,"AccountId":"0017e00001iaMVWAA2","IsPrivate":false,"Name":"Amendment - for contract #00000330","StageName":"Prospecting","Probability":10,"CloseDate":"2023-08-02","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:33:14.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:14.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:33:14.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-02T21:33:14.000+0000","LastReferencedDate":"2023-08-02T21:33:14.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8007e000001iCJkAAM","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKb2AAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iaMVWAA2"},"Id":"0017e00001iaMVWAA2","IsDeleted":false,"Name":"REST - Account 2023-08-02 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iaMVWAA2","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:32:57.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:57.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:57.000+0000","LastViewedDate":"2023-08-02T21:32:57.000+0000","LastReferencedDate":"2023-08-02T21:32:57.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":["0017e00001iaMVWAA2"],"Opportunities":["0067e00000NfEe3AAF"],"SBQQ__RegularAmount__c":1440.00,"SBQQ__NetAmount__c":1440.00,"SBQQ__ListAmount__c":1440.00,"SBQQ__CustomerAmount__c":1440.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":false,"SBQQ__Type__c":"Amendment","SBQQ__SubscriptionTerm__c":12,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-08-02","SBQQ__ShippingName__c":"REST - Account 2023-08-02 00:00:00 UTC","SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__RenewalTerm__c":12,"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":"0067e00000NfEe3AAF","SBQQ__MasterContract__c":"8007e000001iCJkAAM","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-02T21:33:22.000+0000","SBQQ__LastCalculatedOn__c":"2023-08-02T21:33:15.000+0000","SBQQ__EndDate__c":"2024-08-01","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006PoFrQAK"},"Id":"0068N000006PoFrQAK","IsDeleted":false,"AccountId":"0018N00000JKmEmQAL","IsPrivate":false,"Name":"Amendment + for contract #00000104","StageName":"Prospecting","Probability":10,"CloseDate":"2023-09-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T21:10:53.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:53.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:53.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-09-29T21:10:53.000+0000","LastReferencedDate":"2023-09-29T21:10:53.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8008N000000gHi8QAE","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z8N000000yvg4QAA","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0018N00000JKmEmQAL"},"Id":"0018N00000JKmEmQAL","IsDeleted":false,"Name":"REST + Account 2023-09-29 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0018N00000JKmEmQAL","OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T21:10:41.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:41.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:41.000+0000","LastViewedDate":"2023-09-29T21:10:41.000+0000","LastReferencedDate":"2023-09-29T21:10:41.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":["0018N00000JKmEmQAL"],"Opportunities":["0068N000006PoFrQAK"],"SBQQ__RegularAmount__c":1440.00,"SBQQ__NetAmount__c":1440.00,"SBQQ__ListAmount__c":1440.00,"SBQQ__CustomerAmount__c":1440.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-10-29","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":12,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-09-29","SBQQ__ShippingName__c":"REST + Account 2023-09-29 00:00:00 UTC","SBQQ__SalesRep__c":"0058N000004zYG5QAM","SBQQ__RenewalTerm__c":12,"SBQQ__Primary__c":true,"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":"0068N000006PoFrQAK","SBQQ__MasterContract__c":"8008N000000gHi8QAE","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-09-29T21:10:58.000+0000","SBQQ__LastCalculatedOn__c":"2023-09-29T21:10:54.000+0000","SBQQ__EndDate__c":"2024-09-28","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST - Account 2023-08-02 00:00:00 UTC","SBQQ__Account__c":"0017e00001iaMVWAA2","LastReferencedDate":"2023-08-02T21:33:21.000+0000","LastViewedDate":"2023-08-02T21:33:21.000+0000","SystemModstamp":"2023-08-02T21:33:22.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:22.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:33:14.000+0000","Name":"Q-01225","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDKb2AAH","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKb2AAH","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009As7vAAC"},"Id":"01t7e000009As7vAAC","Name":"REST - Product2 2023-08-02 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-02T21:32:55.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:55.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:56.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-09-29 00:00:00 UTC","SBQQ__Account__c":"0018N00000JKmEmQAL","LastReferencedDate":"2023-09-29T21:10:58.000+0000","LastViewedDate":"2023-09-29T21:10:58.000+0000","SystemModstamp":"2023-09-29T21:10:58.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:58.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T21:10:53.000+0000","Name":"Q-00011","IsDeleted":false,"OwnerId":"0058N000004zYG5QAM","Id":"a0z8N000000yvg4QAA","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvg4QAA","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t8N000002zK2CQAU"},"Id":"01t8N000002zK2CQAU","Name":"REST + Product2 2023-09-29 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-09-29T21:10:40.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:40.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:40.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/v58.0/sobjects/PricebookEntry/01u7e00000IsjjiAAB"},"Id":"01u7e00000IsjjiAAB","Name":"REST - Product2 2023-08-02 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009As7vAAC","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-02T21:32:56.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:56.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:56.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/8007e000001iCJkAAM"},"Id":"8007e000001iCJkAAM","AccountId":"0017e00001iaMVWAA2","StartDate":"2023-08-02","EndDate":"2024-08-01","BillingAddress":null,"ContractTerm":12,"OwnerId":"0057e00000VZBcyAAH","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000330","CreatedDate":"2023-08-02T21:33:11.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:33:12.000+0000","LastViewedDate":"2023-08-02T21:33:13.000+0000","LastReferencedDate":"2023-08-02T21:33:13.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":"2024-08-01","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0067e00000NfEWKAA3","SBQQ__Order__c":"8017e000000nR85AAE","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z7e00000BDKaxAAH","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":12,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXtFAAU"},"Id":"a0v7e000008xXtFAAU","IsDeleted":false,"Name":"QL-0002643","CreatedDate":"2023-08-02T21:33:15.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:21.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:33:21.000+0000","SBQQ__Quote__c":"a0z7e00000BDKb2AAH","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__Existing__c":true,"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":"01u7e00000IsjjiAAB","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7vAAC","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProratedListPrice__c":1440.00,"SBQQ__ProratedPrice__c":1440.00,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":1440.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__UpgradedSubscription__c":"a1B7e00000EX4ysEAD","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":1440.00,"SBQQ__EffectiveEndDate__c":"2024-08-01","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-08-02","SBQQ__EffectiveSubscriptionTerm__c":12,"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-08-02 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/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXt9AAE"},"Id":"a0v7e000008xXt9AAE","IsDeleted":false,"Name":"QL-0002641","CreatedDate":"2023-08-02T21:33:06.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:06.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:33:06.000+0000","SBQQ__Quote__c":"a0z7e00000BDKaxAAH","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__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":"01u7e00000IsjjiAAB","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7vAAC","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__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":1440.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-08-02","SBQQ__EffectiveSubscriptionTerm__c":12,"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-08-02 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__Subscription__c","url":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX4ysEAD"},"Id":"a1B7e00000EX4ysEAD","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"SUB-0000287","CreatedDate":"2023-08-02T21:33:12.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:33:12.000+0000","SBQQ__Account__c":"0017e00001iaMVWAA2","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8007e000001iCJkAAM","SBQQ__CustomerPrice__c":1440.00,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__ListPrice__c":1440.00,"SBQQ__NetPrice__c":1440.00,"SBQQ__Number__c":1,"SBQQ__OrderProduct__c":"8027e000001bQevAAE","SBQQ__OriginalQuoteLine__c":"a0v7e000008xXt9AAE","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7vAAC","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v7e000008xXt9AAE","SBQQ__RegularPrice__c":1440.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B7e00000EX4ysEAD","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionStartDate__c":"2023-08-02","SBQQ__ContractNumber__c":"00000330","SBQQ__EndDate__c":"2024-08-01","SBQQ__ProductId__c":"01t7e000009As7v","SBQQ__ProductName__c":"REST - Product2 2023-08-02 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t7e000009As7v","SBQQ__StartDate__c":"2023-08-02","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t7e000009As7vAAC"],"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":"Draft","SBQQ__RevisedOrderProduct__c":"8027e000001bQevAAE","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xXtFAAU","SBQQ__ProrateMultiplier__c":12.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":"Quantity - Increase","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":false,"OrderItemNumber":"0000001330","SystemModstamp":"2023-08-02T21:33:22.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:22.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:33:22.000+0000","EndDate":"2024-08-01","ServiceDate":"2023-08-02","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000IsjjiAAB","OrderId":"8017e000000nR5LAAU","IsDeleted":false,"Product2Id":"01t7e000009As7vAAC","Id":"8027e000001bQf0AAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQf0AAE","type":"OrderItem"}},{"Contracts":["8007e000001iCJkAAM"],"PricebookEntries":[],"Products":["01t7e000009As7vAAC"],"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__Subscription__c":"a1B7e00000EX4ysEAD","SBQQ__SubscriptionTerm__c":12,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__Status__c":"Activated","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xXt9AAE","SBQQ__ProrateMultiplier__c":12.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":true,"SBQQ__Contract__c":"8007e000001iCJkAAM","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000001329","SystemModstamp":"2023-08-02T21:33:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:12.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:33:07.000+0000","EndDate":"2024-08-01","ServiceDate":"2023-08-02","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000IsjjiAAB","OrderId":"8017e000000nR85AAE","IsDeleted":false,"Product2Id":"01t7e000009As7vAAC","Id":"8027e000001bQevAAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQevAAE","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEWKAA3"},"Id":"0067e00000NfEWKAA3","IsDeleted":false,"AccountId":"0017e00001iaMVWAA2","IsPrivate":false,"Name":"REST - Opportunity 2023-08-02 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-02","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:32:58.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:00.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:33:00.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-02T21:32:58.000+0000","LastReferencedDate":"2023-08-02T21:32:58.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKaxAAH","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":["0067e00000NfEe3AAF"],"Accounts":["0017e00001iaMVWAA2"],"OrderItems":["8027e000001bQf0AAE"],"Quotes":["a0z7e00000BDKb2AAH"],"InitialOrderQuotes":["a0z7e00000BDKaxAAH"],"InitialOrderId":["8017e000000nR85AAE"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z7e00000BDKaxAAH","Id":"8007e000001iCJkAAM","attributes":{"url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJkAAM","type":"Contract"}},"SBQQ__AmendedContract__c":"8007e000001iCJkAAM","Id":"0067e00000NfEe3AAF","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEe3AAF","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":12,"SBQQ__Quote__c":"a0z7e00000BDKb2AAH","SBQQ__PriceCalcStatus__c":"Not + 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/v58.0/sobjects/PricebookEntry/01u8N000003ce4PQAQ"},"Id":"01u8N000003ce4PQAQ","Name":"REST + Product2 2023-09-29 00:00:00 UTC","Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000002zK2CQAU","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-09-29T21:10:40.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:40.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:40.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/8008N000000gHi8QAE"},"Id":"8008N000000gHi8QAE","AccountId":"0018N00000JKmEmQAL","StartDate":"2023-09-29","EndDate":"2024-09-28","BillingAddress":null,"ContractTerm":12,"OwnerId":"0058N000004zYG5QAM","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000104","CreatedDate":"2023-09-29T21:10:51.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:51.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:51.000+0000","LastViewedDate":"2023-09-29T21:10:52.000+0000","LastReferencedDate":"2023-09-29T21:10: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":"2024-09-28","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0068N000006PoFmQAK","SBQQ__Order__c":"8018N0000002yWvQAI","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z8N000000yvfzQAA","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":12,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpPPQA0"},"Id":"a0v8N000002SpPPQA0","IsDeleted":false,"Name":"QL-0000030","CreatedDate":"2023-09-29T21:10:54.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:58.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:58.000+0000","SBQQ__Quote__c":"a0z8N000000yvg4QAA","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__Existing__c":true,"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":"01u8N000003ce4PQAQ","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000002zK2CQAU","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProratedListPrice__c":1440.00,"SBQQ__ProratedPrice__c":1440.00,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":1440.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__UpgradedSubscription__c":"a1B8N0000015OULUA2","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":1440.00,"SBQQ__EffectiveEndDate__c":"2024-09-28","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-09-29","SBQQ__EffectiveSubscriptionTerm__c":12,"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-09-29 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/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpPJQA0"},"Id":"a0v8N000002SpPJQA0","IsDeleted":false,"Name":"QL-0000028","CreatedDate":"2023-09-29T21:10:47.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:47.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:47.000+0000","SBQQ__Quote__c":"a0z8N000000yvfzQAA","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__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":"01u8N000003ce4PQAQ","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000002zK2CQAU","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__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":1440.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-09-29","SBQQ__EffectiveSubscriptionTerm__c":12,"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-09-29 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__Subscription__c","url":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B8N0000015OULUA2"},"Id":"a1B8N0000015OULUA2","OwnerId":"0058N000004zYG5QAM","IsDeleted":false,"Name":"SUB-0000004","CreatedDate":"2023-09-29T21:10:51.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:51.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:51.000+0000","SBQQ__Account__c":"0018N00000JKmEmQAL","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8008N000000gHi8QAE","SBQQ__CustomerPrice__c":1440.00,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__ListPrice__c":1440.00,"SBQQ__NetPrice__c":1440.00,"SBQQ__Number__c":1,"SBQQ__OrderProduct__c":"8028N0000005mvLQAQ","SBQQ__OriginalQuoteLine__c":"a0v8N000002SpPJQA0","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000002zK2CQAU","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v8N000002SpPJQA0","SBQQ__RegularPrice__c":1440.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B8N0000015OULUA2","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionStartDate__c":"2023-09-29","SBQQ__ContractNumber__c":"00000104","SBQQ__EndDate__c":"2024-09-28","SBQQ__ProductId__c":"01t8N000002zK2C","SBQQ__ProductName__c":"REST + Product2 2023-09-29 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t8N000002zK2C","SBQQ__StartDate__c":"2023-09-29","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t8N000002zK2CQAU"],"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":"Draft","SBQQ__RevisedOrderProduct__c":"8028N0000005mvLQAQ","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002SpPPQA0","SBQQ__ProrateMultiplier__c":12.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":"Quantity + Increase","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":false,"OrderItemNumber":"0000000012","SystemModstamp":"2023-09-29T21:10:59.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:59.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T21:10:59.000+0000","EndDate":"2024-09-28","ServiceDate":"2023-09-29","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003ce4PQAQ","OrderId":"8018N0000002yX0QAI","IsDeleted":false,"Product2Id":"01t8N000002zK2CQAU","Id":"8028N0000005mvQQAQ","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005mvQQAQ","type":"OrderItem"}},{"Contracts":["8008N000000gHi8QAE"],"PricebookEntries":[],"Products":["01t8N000002zK2CQAU"],"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__Subscription__c":"a1B8N0000015OULUA2","SBQQ__SubscriptionTerm__c":12,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002SpPJQA0","SBQQ__ProrateMultiplier__c":12.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":true,"SBQQ__Contract__c":"8008N000000gHi8QAE","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000011","SystemModstamp":"2023-09-29T21:10:51.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:51.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T21:10:48.000+0000","EndDate":"2024-09-28","ServiceDate":"2023-09-29","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003ce4PQAQ","OrderId":"8018N0000002yWvQAI","IsDeleted":false,"Product2Id":"01t8N000002zK2CQAU","Id":"8028N0000005mvLQAQ","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005mvLQAQ","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006PoFmQAK"},"Id":"0068N000006PoFmQAK","IsDeleted":false,"AccountId":"0018N00000JKmEmQAL","IsPrivate":false,"Name":"REST + Opportunity 2023-09-29 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-09-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T21:10:41.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:42.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:42.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-09-29T21:10:41.000+0000","LastReferencedDate":"2023-09-29T21:10:41.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z8N000000yvfzQAA","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.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":["0068N000006PoFrQAK"],"Accounts":["0018N00000JKmEmQAL"],"OrderItems":["8028N0000005mvQQAQ"],"Quotes":["a0z8N000000yvg4QAA"],"InitialOrderQuotes":["a0z8N000000yvfzQAA"],"InitialOrderId":["8018N0000002yWvQAI"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z8N000000yvfzQAA","Id":"8008N000000gHi8QAE","attributes":{"url":"/services/data/v58.0/sobjects/Contract/8008N000000gHi8QAE","type":"Contract"}},"SBQQ__AmendedContract__c":"8008N000000gHi8QAE","Id":"0068N000006PoFrQAK","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0068N000006PoFrQAK","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":12,"SBQQ__Quote__c":"a0z8N000000yvg4QAA","SBQQ__PriceCalcStatus__c":"Not Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription - End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-02T21:33:24.000+0000","LastViewedDate":"2023-08-02T21:33:24.000+0000","SystemModstamp":"2023-08-02T21:33:23.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:23.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:33:22.000+0000","TotalAmount":1440.00,"OrderNumber":"00001308","StatusCode":"Draft","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Draft","IsReductionOrder":false,"EffectiveDate":"2023-08-02","OpportunityId":"0067e00000NfEe3AAF","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaMVWAA2","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nR5LAAU","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nR5LAAU","type":"Order"}},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000NfEWKAA3"],"Accounts":["0017e00001iaMVWAA2"],"OrderItems":["8027e000001bQevAAE"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z7e00000BDKaxAAH","SBQQ__PriceCalcStatus__c":"Not + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-09-29T21:11:01.000+0000","LastViewedDate":"2023-09-29T21:11:01.000+0000","SystemModstamp":"2023-09-29T21:11:01.000+0000","IsDeleted":false,"LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:11:01.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T21:10:59.000+0000","TotalAmount":1440.00,"OrderNumber":"00000111","StatusCode":"Draft","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Draft","IsReductionOrder":false,"EffectiveDate":"2023-09-29","OpportunityId":"0068N000006PoFrQAK","Pricebook2Id":"01s8N000002d0dzQAA","AccountId":"0018N00000JKmEmQAL","OwnerId":"0058N000004zYG5QAM","Id":"8018N0000002yX0QAI","attributes":{"url":"/services/data/v58.0/sobjects/Order/8018N0000002yX0QAI","type":"Order"}},{"PriceBooks":["01s8N000002d0dzQAA"],"Opportunities":["0068N000006PoFmQAK"],"Accounts":["0018N00000JKmEmQAL"],"OrderItems":["8028N0000005mvLQAQ"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z8N000000yvfzQAA","SBQQ__PriceCalcStatus__c":"Not Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription - End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-08-02T21:33:10.000+0000","LastViewedDate":"2023-08-02T21:33:10.000+0000","SystemModstamp":"2023-08-02T21:33:10.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:10.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:33:07.000+0000","TotalAmount":1440.00,"OrderNumber":"00001307","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-02T21:33:09.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-02","OpportunityId":"0067e00000NfEWKAA3","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaMVWAA2","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nR85AAE","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nR85AAE","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-09-29T21:10:50.000+0000","LastViewedDate":"2023-09-29T21:10:50.000+0000","SystemModstamp":"2023-09-29T21:10:50.000+0000","IsDeleted":false,"LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:50.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T21:10:48.000+0000","TotalAmount":1440.00,"OrderNumber":"00000110","StatusCode":"Activated","ActivatedById":"0058N000004zYG5QAM","ActivatedDate":"2023-09-29T21:10:49.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-09-29","OpportunityId":"0068N000006PoFmQAK","Pricebook2Id":"01s8N000002d0dzQAA","AccountId":"0018N00000JKmEmQAL","OwnerId":"0058N000004zYG5QAM","Id":"8018N0000002yWvQAI","attributes":{"url":"/services/data/v58.0/sobjects/Order/8018N0000002yWvQAI","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 @@ -1751,10 +1748,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: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:02 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%278017e000000nR5LAAU%27%0A + 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%278018N0000002yX0QAI%27%0A body: encoding: US-ASCII string: '' @@ -1773,12 +1770,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:27 GMT + - Fri, 29 Sep 2023 21:11:03 GMT Set-Cookie: - - BrowserId=N86BXzF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:27 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:27 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:27 + - BrowserId=skhBuF8MEe6nfRHpcPFuBQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1791,7 +1788,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13703/5000000 + - api-usage=694/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1800,11 +1797,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR5LAAU"},"Type":"Amendment","OpportunityId":"0067e00000NfEe3AAF","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEe3AAF"},"SBQQ__AmendedContract__c":"8007e000001iCJkAAM"}}]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N0000002yX0QAI"},"Type":"Amendment","OpportunityId":"0068N000006PoFrQAK","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006PoFrQAK"},"SBQQ__AmendedContract__c":"8008N000000gHi8QAE"}}]}' + recorded_at: Fri, 29 Sep 2023 21:11:03 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%278017e000000nR5LAAU%27%0A + uri: https://platform-page-3481-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%278018N0000002yX0QAI%27%0A body: encoding: US-ASCII string: '' @@ -1823,12 +1820,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:28 GMT + - Fri, 29 Sep 2023 21:11:03 GMT Set-Cookie: - - BrowserId=OAYL-zF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:28 + - BrowserId=sl_BB18MEe6E5X1Ey17tEQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1841,7 +1838,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13712/5000000 + - api-usage=692/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1850,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/8017e000000nR5LAAU"},"OpportunityId":"0067e00000NfEe3AAF","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEe3AAF"},"SBQQ__AmendedContract__c":"8007e000001iCJkAAM","SBQQ__AmendedContract__r":{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJkAAM"},"SBQQ__Quote__c":"a0z7e00000BDKaxAAH"}}}]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N0000002yX0QAI"},"OpportunityId":"0068N000006PoFrQAK","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006PoFrQAK"},"SBQQ__AmendedContract__c":"8008N000000gHi8QAE","SBQQ__AmendedContract__r":{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8008N000000gHi8QAE"},"SBQQ__Quote__c":"a0z8N000000yvfzQAA"}}}]}' + recorded_at: Fri, 29 Sep 2023 21:11: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%20Order%0AWHERE%20SBQQ__Quote__c%20=%20%27a0z7e00000BDKaxAAH%27%0A + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20Order%0AWHERE%20SBQQ__Quote__c%20=%20%27a0z8N000000yvfzQAA%27%0A body: encoding: US-ASCII string: '' @@ -1873,12 +1870,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:28 GMT + - Fri, 29 Sep 2023 21:11:03 GMT Set-Cookie: - - BrowserId=OGrBUDF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:28 + - BrowserId=soPD918MEe6YVi3i9wy2Pw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1891,7 +1888,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13696/5000000 + - api-usage=693/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1900,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/8017e000000nR85AAE"},"Id":"8017e000000nR85AAE"}]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N0000002yWvQAI"},"Id":"8018N0000002yWvQAI"}]}' + recorded_at: Fri, 29 Sep 2023 21:11:03 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%278007e000001iCJkAAM%27%0AORDER%20BY%20SBQQ__Quote__r.SBQQ__StartDate__c,%20LastModifiedDate%20ASC%20LIMIT%20200%0A + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20FIELDS(ALL)%20FROM%20Order%0AWHERE%20Opportunity.SBQQ__AmendedContract__c%20=%20%278008N000000gHi8QAE%27%0AORDER%20BY%20SBQQ__Quote__r.SBQQ__StartDate__c,%20LastModifiedDate%20ASC%20LIMIT%20200%0A body: encoding: US-ASCII string: '' @@ -1923,12 +1920,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:29 GMT + - Fri, 29 Sep 2023 21:11:03 GMT Set-Cookie: - - BrowserId=OKzTfjF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:29 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:29 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:29 + - BrowserId=sqJH7l8MEe6w_gFWpTIg2Q; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1941,7 +1938,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13704/5000000 + - api-usage=691/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1950,16 +1947,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR5LAAU"},"Id":"8017e000000nR5LAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMVWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEe3AAF","EffectiveDate":"2023-08-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":"00001308","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:33:22.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:23.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:33:23.000+0000","LastViewedDate":"2023-08-02T21:33:24.000+0000","LastReferencedDate":"2023-08-02T21:33:24.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/8018N0000002yX0QAI"},"Id":"8018N0000002yX0QAI","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKmEmQAL","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006PoFrQAK","EffectiveDate":"2023-09-29","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":"00000111","TotalAmount":1440.0,"CreatedDate":"2023-09-29T21:10:59.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:11:01.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T21:11:01.000+0000","LastViewedDate":"2023-09-29T21:11:01.000+0000","LastReferencedDate":"2023-09-29T21:11: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":"a0z7e00000BDKb2AAH","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Wed, 02 Aug 2023 21:22:26 GMT + Needed","SBQQ__Quote__c":"a0z8N000000yvg4QAA","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Fri, 29 Sep 2023 21:11:03 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nR5LAAU"]}' + string: '{"order_ids":["8018N0000002yX0QAI"]}' headers: User-Agent: - Faraday v2.4.0 @@ -1977,12 +1974,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:29 GMT + - Fri, 29 Sep 2023 21:11:03 GMT Set-Cookie: - - BrowserId=OOhV5zF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:29 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:29 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:29 + - BrowserId=ssKh518MEe6nfRHpcPFuBQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2002,39 +1999,39 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEe3AAF"},"Id":"0067e00000NfEe3AAF","IsDeleted":false,"AccountId":"0017e00001iaMVWAA2","IsPrivate":false,"Name":"Amendment - for contract #00000330","StageName":"Prospecting","Probability":10,"CloseDate":"2023-08-02","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:33:14.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:14.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:33:14.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-02T21:33:14.000+0000","LastReferencedDate":"2023-08-02T21:33:14.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8007e000001iCJkAAM","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKb2AAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iaMVWAA2"},"Id":"0017e00001iaMVWAA2","IsDeleted":false,"Name":"REST - Account 2023-08-02 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iaMVWAA2","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:32:57.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:57.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:57.000+0000","LastViewedDate":"2023-08-02T21:32:57.000+0000","LastReferencedDate":"2023-08-02T21:32:57.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":["0017e00001iaMVWAA2"],"Opportunities":["0067e00000NfEe3AAF"],"SBQQ__RegularAmount__c":1440.00,"SBQQ__NetAmount__c":1440.00,"SBQQ__ListAmount__c":1440.00,"SBQQ__CustomerAmount__c":1440.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":false,"SBQQ__Type__c":"Amendment","SBQQ__SubscriptionTerm__c":12,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-08-02","SBQQ__ShippingName__c":"REST - Account 2023-08-02 00:00:00 UTC","SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__RenewalTerm__c":12,"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":"0067e00000NfEe3AAF","SBQQ__MasterContract__c":"8007e000001iCJkAAM","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-02T21:33:22.000+0000","SBQQ__LastCalculatedOn__c":"2023-08-02T21:33:15.000+0000","SBQQ__EndDate__c":"2024-08-01","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006PoFrQAK"},"Id":"0068N000006PoFrQAK","IsDeleted":false,"AccountId":"0018N00000JKmEmQAL","IsPrivate":false,"Name":"Amendment + for contract #00000104","StageName":"Prospecting","Probability":10,"CloseDate":"2023-09-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T21:10:53.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:53.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:53.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-09-29T21:10:53.000+0000","LastReferencedDate":"2023-09-29T21:10:53.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8008N000000gHi8QAE","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z8N000000yvg4QAA","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0018N00000JKmEmQAL"},"Id":"0018N00000JKmEmQAL","IsDeleted":false,"Name":"REST + Account 2023-09-29 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0018N00000JKmEmQAL","OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T21:10:41.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:41.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:41.000+0000","LastViewedDate":"2023-09-29T21:10:41.000+0000","LastReferencedDate":"2023-09-29T21:10:41.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":["0018N00000JKmEmQAL"],"Opportunities":["0068N000006PoFrQAK"],"SBQQ__RegularAmount__c":1440.00,"SBQQ__NetAmount__c":1440.00,"SBQQ__ListAmount__c":1440.00,"SBQQ__CustomerAmount__c":1440.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-10-29","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":12,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-09-29","SBQQ__ShippingName__c":"REST + Account 2023-09-29 00:00:00 UTC","SBQQ__SalesRep__c":"0058N000004zYG5QAM","SBQQ__RenewalTerm__c":12,"SBQQ__Primary__c":true,"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":"0068N000006PoFrQAK","SBQQ__MasterContract__c":"8008N000000gHi8QAE","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-09-29T21:10:58.000+0000","SBQQ__LastCalculatedOn__c":"2023-09-29T21:10:54.000+0000","SBQQ__EndDate__c":"2024-09-28","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST - Account 2023-08-02 00:00:00 UTC","SBQQ__Account__c":"0017e00001iaMVWAA2","LastReferencedDate":"2023-08-02T21:33:21.000+0000","LastViewedDate":"2023-08-02T21:33:21.000+0000","SystemModstamp":"2023-08-02T21:33:22.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:22.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:33:14.000+0000","Name":"Q-01225","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDKb2AAH","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKb2AAH","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009As7vAAC"},"Id":"01t7e000009As7vAAC","Name":"REST - Product2 2023-08-02 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-02T21:32:55.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:55.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:56.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-09-29 00:00:00 UTC","SBQQ__Account__c":"0018N00000JKmEmQAL","LastReferencedDate":"2023-09-29T21:10:58.000+0000","LastViewedDate":"2023-09-29T21:10:58.000+0000","SystemModstamp":"2023-09-29T21:10:58.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:58.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T21:10:53.000+0000","Name":"Q-00011","IsDeleted":false,"OwnerId":"0058N000004zYG5QAM","Id":"a0z8N000000yvg4QAA","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvg4QAA","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t8N000002zK2CQAU"},"Id":"01t8N000002zK2CQAU","Name":"REST + Product2 2023-09-29 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-09-29T21:10:40.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:40.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:40.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/v58.0/sobjects/PricebookEntry/01u7e00000IsjjiAAB"},"Id":"01u7e00000IsjjiAAB","Name":"REST - Product2 2023-08-02 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009As7vAAC","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-02T21:32:56.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:56.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:56.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/8007e000001iCJkAAM"},"Id":"8007e000001iCJkAAM","AccountId":"0017e00001iaMVWAA2","StartDate":"2023-08-02","EndDate":"2024-08-01","BillingAddress":null,"ContractTerm":12,"OwnerId":"0057e00000VZBcyAAH","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000330","CreatedDate":"2023-08-02T21:33:11.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:33:12.000+0000","LastViewedDate":"2023-08-02T21:33:13.000+0000","LastReferencedDate":"2023-08-02T21:33:13.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":"2024-08-01","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0067e00000NfEWKAA3","SBQQ__Order__c":"8017e000000nR85AAE","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z7e00000BDKaxAAH","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":12,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXtFAAU"},"Id":"a0v7e000008xXtFAAU","IsDeleted":false,"Name":"QL-0002643","CreatedDate":"2023-08-02T21:33:15.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:21.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:33:21.000+0000","SBQQ__Quote__c":"a0z7e00000BDKb2AAH","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__Existing__c":true,"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":"01u7e00000IsjjiAAB","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7vAAC","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProratedListPrice__c":1440.00,"SBQQ__ProratedPrice__c":1440.00,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":1440.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__UpgradedSubscription__c":"a1B7e00000EX4ysEAD","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":1440.00,"SBQQ__EffectiveEndDate__c":"2024-08-01","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-08-02","SBQQ__EffectiveSubscriptionTerm__c":12,"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-08-02 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/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXt9AAE"},"Id":"a0v7e000008xXt9AAE","IsDeleted":false,"Name":"QL-0002641","CreatedDate":"2023-08-02T21:33:06.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:06.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:33:06.000+0000","SBQQ__Quote__c":"a0z7e00000BDKaxAAH","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__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":"01u7e00000IsjjiAAB","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7vAAC","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__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":1440.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-08-02","SBQQ__EffectiveSubscriptionTerm__c":12,"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-08-02 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__Subscription__c","url":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B7e00000EX4ysEAD"},"Id":"a1B7e00000EX4ysEAD","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"SUB-0000287","CreatedDate":"2023-08-02T21:33:12.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:33:12.000+0000","SBQQ__Account__c":"0017e00001iaMVWAA2","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8007e000001iCJkAAM","SBQQ__CustomerPrice__c":1440.00,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__ListPrice__c":1440.00,"SBQQ__NetPrice__c":1440.00,"SBQQ__Number__c":1,"SBQQ__OrderProduct__c":"8027e000001bQevAAE","SBQQ__OriginalQuoteLine__c":"a0v7e000008xXt9AAE","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7vAAC","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v7e000008xXt9AAE","SBQQ__RegularPrice__c":1440.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B7e00000EX4ysEAD","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionStartDate__c":"2023-08-02","SBQQ__ContractNumber__c":"00000330","SBQQ__EndDate__c":"2024-08-01","SBQQ__ProductId__c":"01t7e000009As7v","SBQQ__ProductName__c":"REST - Product2 2023-08-02 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t7e000009As7v","SBQQ__StartDate__c":"2023-08-02","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t7e000009As7vAAC"],"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":"Draft","SBQQ__RevisedOrderProduct__c":"8027e000001bQevAAE","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xXtFAAU","SBQQ__ProrateMultiplier__c":12.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":"Quantity - Increase","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":false,"OrderItemNumber":"0000001330","SystemModstamp":"2023-08-02T21:33:22.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:22.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:33:22.000+0000","EndDate":"2024-08-01","ServiceDate":"2023-08-02","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000IsjjiAAB","OrderId":"8017e000000nR5LAAU","IsDeleted":false,"Product2Id":"01t7e000009As7vAAC","Id":"8027e000001bQf0AAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQf0AAE","type":"OrderItem"}},{"Contracts":["8007e000001iCJkAAM"],"PricebookEntries":[],"Products":["01t7e000009As7vAAC"],"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__Subscription__c":"a1B7e00000EX4ysEAD","SBQQ__SubscriptionTerm__c":12,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__Status__c":"Activated","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xXt9AAE","SBQQ__ProrateMultiplier__c":12.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":true,"SBQQ__Contract__c":"8007e000001iCJkAAM","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000001329","SystemModstamp":"2023-08-02T21:33:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:12.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:33:07.000+0000","EndDate":"2024-08-01","ServiceDate":"2023-08-02","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000IsjjiAAB","OrderId":"8017e000000nR85AAE","IsDeleted":false,"Product2Id":"01t7e000009As7vAAC","Id":"8027e000001bQevAAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQevAAE","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEWKAA3"},"Id":"0067e00000NfEWKAA3","IsDeleted":false,"AccountId":"0017e00001iaMVWAA2","IsPrivate":false,"Name":"REST - Opportunity 2023-08-02 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-02","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:32:58.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:00.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:33:00.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-02T21:32:58.000+0000","LastReferencedDate":"2023-08-02T21:32:58.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKaxAAH","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":["0067e00000NfEe3AAF"],"Accounts":["0017e00001iaMVWAA2"],"OrderItems":["8027e000001bQf0AAE"],"Quotes":["a0z7e00000BDKb2AAH"],"InitialOrderQuotes":["a0z7e00000BDKaxAAH"],"InitialOrderId":["8017e000000nR85AAE"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z7e00000BDKaxAAH","Id":"8007e000001iCJkAAM","attributes":{"url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJkAAM","type":"Contract"}},"SBQQ__AmendedContract__c":"8007e000001iCJkAAM","Id":"0067e00000NfEe3AAF","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEe3AAF","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":12,"SBQQ__Quote__c":"a0z7e00000BDKb2AAH","SBQQ__PriceCalcStatus__c":"Not + 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/v58.0/sobjects/PricebookEntry/01u8N000003ce4PQAQ"},"Id":"01u8N000003ce4PQAQ","Name":"REST + Product2 2023-09-29 00:00:00 UTC","Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000002zK2CQAU","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-09-29T21:10:40.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:40.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:40.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/8008N000000gHi8QAE"},"Id":"8008N000000gHi8QAE","AccountId":"0018N00000JKmEmQAL","StartDate":"2023-09-29","EndDate":"2024-09-28","BillingAddress":null,"ContractTerm":12,"OwnerId":"0058N000004zYG5QAM","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000104","CreatedDate":"2023-09-29T21:10:51.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:51.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:51.000+0000","LastViewedDate":"2023-09-29T21:10:52.000+0000","LastReferencedDate":"2023-09-29T21:10: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":"2024-09-28","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0068N000006PoFmQAK","SBQQ__Order__c":"8018N0000002yWvQAI","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z8N000000yvfzQAA","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":12,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpPPQA0"},"Id":"a0v8N000002SpPPQA0","IsDeleted":false,"Name":"QL-0000030","CreatedDate":"2023-09-29T21:10:54.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:58.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:58.000+0000","SBQQ__Quote__c":"a0z8N000000yvg4QAA","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__Existing__c":true,"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":"01u8N000003ce4PQAQ","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000002zK2CQAU","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__ProratedListPrice__c":1440.00,"SBQQ__ProratedPrice__c":1440.00,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":1440.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__UpgradedSubscription__c":"a1B8N0000015OULUA2","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":1440.00,"SBQQ__EffectiveEndDate__c":"2024-09-28","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-09-29","SBQQ__EffectiveSubscriptionTerm__c":12,"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-09-29 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/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpPJQA0"},"Id":"a0v8N000002SpPJQA0","IsDeleted":false,"Name":"QL-0000028","CreatedDate":"2023-09-29T21:10:47.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:47.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:47.000+0000","SBQQ__Quote__c":"a0z8N000000yvfzQAA","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__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":"01u8N000003ce4PQAQ","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000002zK2CQAU","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__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":1440.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-09-29","SBQQ__EffectiveSubscriptionTerm__c":12,"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-09-29 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__Subscription__c","url":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B8N0000015OULUA2"},"Id":"a1B8N0000015OULUA2","OwnerId":"0058N000004zYG5QAM","IsDeleted":false,"Name":"SUB-0000004","CreatedDate":"2023-09-29T21:10:51.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:51.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:51.000+0000","SBQQ__Account__c":"0018N00000JKmEmQAL","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8008N000000gHi8QAE","SBQQ__CustomerPrice__c":1440.00,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__ListPrice__c":1440.00,"SBQQ__NetPrice__c":1440.00,"SBQQ__Number__c":1,"SBQQ__OrderProduct__c":"8028N0000005mvLQAQ","SBQQ__OriginalQuoteLine__c":"a0v8N000002SpPJQA0","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000002zK2CQAU","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v8N000002SpPJQA0","SBQQ__RegularPrice__c":1440.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B8N0000015OULUA2","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionStartDate__c":"2023-09-29","SBQQ__ContractNumber__c":"00000104","SBQQ__EndDate__c":"2024-09-28","SBQQ__ProductId__c":"01t8N000002zK2C","SBQQ__ProductName__c":"REST + Product2 2023-09-29 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t8N000002zK2C","SBQQ__StartDate__c":"2023-09-29","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t8N000002zK2CQAU"],"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":"Draft","SBQQ__RevisedOrderProduct__c":"8028N0000005mvLQAQ","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002SpPPQA0","SBQQ__ProrateMultiplier__c":12.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":"Quantity + Increase","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":false,"OrderItemNumber":"0000000012","SystemModstamp":"2023-09-29T21:10:59.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:59.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T21:10:59.000+0000","EndDate":"2024-09-28","ServiceDate":"2023-09-29","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003ce4PQAQ","OrderId":"8018N0000002yX0QAI","IsDeleted":false,"Product2Id":"01t8N000002zK2CQAU","Id":"8028N0000005mvQQAQ","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005mvQQAQ","type":"OrderItem"}},{"Contracts":["8008N000000gHi8QAE"],"PricebookEntries":[],"Products":["01t8N000002zK2CQAU"],"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__Subscription__c":"a1B8N0000015OULUA2","SBQQ__SubscriptionTerm__c":12,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002SpPJQA0","SBQQ__ProrateMultiplier__c":12.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":true,"SBQQ__Contract__c":"8008N000000gHi8QAE","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000011","SystemModstamp":"2023-09-29T21:10:51.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:51.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T21:10:48.000+0000","EndDate":"2024-09-28","ServiceDate":"2023-09-29","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003ce4PQAQ","OrderId":"8018N0000002yWvQAI","IsDeleted":false,"Product2Id":"01t8N000002zK2CQAU","Id":"8028N0000005mvLQAQ","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005mvLQAQ","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006PoFmQAK"},"Id":"0068N000006PoFmQAK","IsDeleted":false,"AccountId":"0018N00000JKmEmQAL","IsPrivate":false,"Name":"REST + Opportunity 2023-09-29 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-09-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T21:10:41.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:42.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:42.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-09-29T21:10:41.000+0000","LastReferencedDate":"2023-09-29T21:10:41.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z8N000000yvfzQAA","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.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":["0068N000006PoFrQAK"],"Accounts":["0018N00000JKmEmQAL"],"OrderItems":["8028N0000005mvQQAQ"],"Quotes":["a0z8N000000yvg4QAA"],"InitialOrderQuotes":["a0z8N000000yvfzQAA"],"InitialOrderId":["8018N0000002yWvQAI"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z8N000000yvfzQAA","Id":"8008N000000gHi8QAE","attributes":{"url":"/services/data/v58.0/sobjects/Contract/8008N000000gHi8QAE","type":"Contract"}},"SBQQ__AmendedContract__c":"8008N000000gHi8QAE","Id":"0068N000006PoFrQAK","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0068N000006PoFrQAK","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":12,"SBQQ__Quote__c":"a0z8N000000yvg4QAA","SBQQ__PriceCalcStatus__c":"Not Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription - End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-02T21:33:24.000+0000","LastViewedDate":"2023-08-02T21:33:24.000+0000","SystemModstamp":"2023-08-02T21:33:23.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:23.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:33:22.000+0000","TotalAmount":1440.00,"OrderNumber":"00001308","StatusCode":"Draft","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Draft","IsReductionOrder":false,"EffectiveDate":"2023-08-02","OpportunityId":"0067e00000NfEe3AAF","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaMVWAA2","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nR5LAAU","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nR5LAAU","type":"Order"}},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000NfEWKAA3"],"Accounts":["0017e00001iaMVWAA2"],"OrderItems":["8027e000001bQevAAE"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z7e00000BDKaxAAH","SBQQ__PriceCalcStatus__c":"Not + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-09-29T21:11:01.000+0000","LastViewedDate":"2023-09-29T21:11:01.000+0000","SystemModstamp":"2023-09-29T21:11:01.000+0000","IsDeleted":false,"LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:11:01.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T21:10:59.000+0000","TotalAmount":1440.00,"OrderNumber":"00000111","StatusCode":"Draft","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Draft","IsReductionOrder":false,"EffectiveDate":"2023-09-29","OpportunityId":"0068N000006PoFrQAK","Pricebook2Id":"01s8N000002d0dzQAA","AccountId":"0018N00000JKmEmQAL","OwnerId":"0058N000004zYG5QAM","Id":"8018N0000002yX0QAI","attributes":{"url":"/services/data/v58.0/sobjects/Order/8018N0000002yX0QAI","type":"Order"}},{"PriceBooks":["01s8N000002d0dzQAA"],"Opportunities":["0068N000006PoFmQAK"],"Accounts":["0018N00000JKmEmQAL"],"OrderItems":["8028N0000005mvLQAQ"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z8N000000yvfzQAA","SBQQ__PriceCalcStatus__c":"Not Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription - End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-08-02T21:33:10.000+0000","LastViewedDate":"2023-08-02T21:33:10.000+0000","SystemModstamp":"2023-08-02T21:33:10.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:10.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:33:07.000+0000","TotalAmount":1440.00,"OrderNumber":"00001307","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-02T21:33:09.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-02","OpportunityId":"0067e00000NfEWKAA3","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaMVWAA2","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nR85AAE","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nR85AAE","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-09-29T21:10:50.000+0000","LastViewedDate":"2023-09-29T21:10:50.000+0000","SystemModstamp":"2023-09-29T21:10:50.000+0000","IsDeleted":false,"LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:50.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T21:10:48.000+0000","TotalAmount":1440.00,"OrderNumber":"00000110","StatusCode":"Activated","ActivatedById":"0058N000004zYG5QAM","ActivatedDate":"2023-09-29T21:10:49.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-09-29","OpportunityId":"0068N000006PoFmQAK","Pricebook2Id":"01s8N000002d0dzQAA","AccountId":"0018N00000JKmEmQAL","OwnerId":"0058N000004zYG5QAM","Id":"8018N0000002yWvQAI","attributes":{"url":"/services/data/v58.0/sobjects/Order/8018N0000002yWvQAI","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 @@ -2051,10 +2048,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: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:04 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%278017e000000nR85AAE%27%20%20AND%20Status%20=%20%27Activated%27 + 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%278018N0000002yWvQAI%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -2073,12 +2070,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:31 GMT + - Fri, 29 Sep 2023 21:11:05 GMT Set-Cookie: - - BrowserId=OeENCjF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:31 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:31 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:31 + - BrowserId=s3rOP18MEe6paD9uZNlBrQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:05 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2091,7 +2088,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13704/5000000 + - api-usage=695/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2100,14 +2097,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR85AAE"},"Id":"8017e000000nR85AAE"}]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N0000002yWvQAI"},"Id":"8018N0000002yWvQAI"}]}' + recorded_at: Fri, 29 Sep 2023 21:11:05 GMT - request: method: post uri: https://api.stripe.com/v1/customers body: encoding: UTF-8 - string: name=REST+Account++2023-08-02+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0017e00001iaMVWAA2&metadata[salesforce_account_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F0017e00001iaMVWAA2 + string: name=REST+Account++2023-09-29+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0018N00000JKmEmQAL&metadata[salesforce_account_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F0018N00000JKmEmQAL headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -2116,13 +2113,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded Idempotency-Key: - - 50ee6e0a-ba3d-4177-b53f-323116cf4dc5 + - 742aeb77-6858-4933-bb91-083bb84961e7 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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -2137,17 +2134,17 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:33:31 GMT + - Fri, 29 Sep 2023 21:11:05 GMT Content-Type: - application/json Content-Length: - - '848' + - '843' Connection: - keep-alive Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE + - GET,HEAD,PUT,PATCH,POST,DELETE Access-Control-Allow-Origin: - "*" Access-Control-Expose-Headers: @@ -2157,17 +2154,19 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - 50ee6e0a-ba3d-4177-b53f-323116cf4dc5 + - 742aeb77-6858-4933-bb91-083bb84961e7 Original-Request: - - req_BtjYx2HtgHZ5nK + - req_jHZwXl51Y901Hv Request-Id: - - req_BtjYx2HtgHZ5nK + - req_jHZwXl51Y901Hv 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: @@ -2176,11 +2175,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONXlbkb5sUGB5D", + "id": "cus_OjGU2oGsjRmZD4", "object": "customer", "address": null, "balance": 0, - "created": 1691012011, + "created": 1696021865, "currency": null, "default_currency": null, "default_source": null, @@ -2188,7 +2187,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "E45AB049", + "invoice_prefix": "EBE2D43E", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -2197,10 +2196,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaMVWAA2", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaMVWAA2" + "salesforce_account_id": "0018N00000JKmEmQAL", + "salesforce_account_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/0018N00000JKmEmQAL" }, - "name": "REST Account 2023-08-02 00:00:00 UTC", + "name": "REST Account 2023-09-29 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -2208,13 +2207,13 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:05 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0017e00001iaMVWAA2 + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0018N00000JKmEmQAL body: encoding: UTF-8 - string: '{"Stripe_ID__c":"cus_ONXlbkb5sUGB5D"}' + string: '{"Stripe_ID__c":"cus_OjGU2oGsjRmZD4"}' headers: User-Agent: - Faraday v2.4.0 @@ -2232,12 +2231,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:33:32 GMT + - Fri, 29 Sep 2023 21:11:05 GMT Set-Cookie: - - BrowserId=OnOJBzF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:32 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:32 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:32 + - BrowserId=s9hXml8MEe6paD9uZNlBrQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:05 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2252,17 +2251,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13697/5000000 + - api-usage=696/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:05 GMT - request: method: post uri: https://api.stripe.com/v1/products body: encoding: UTF-8 - string: name=REST+Product2++2023-08-02+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t7e000009As7vAAC&metadata[salesforce_product2_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01t7e000009As7vAAC + string: name=REST+Product2++2023-09-29+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t8N000002zK2CQAU&metadata[salesforce_product2_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F01t8N000002zK2CQAU headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -2271,15 +2270,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_BtjYx2HtgHZ5nK","request_duration_ms":469}}' + - '{"last_request_metrics":{"request_id":"req_jHZwXl51Y901Hv","request_duration_ms":394}}' Idempotency-Key: - - 3bb98d9a-6204-4cee-a976-3448aff6a5e5 + - f5967bfa-cc4c-43ac-859b-ef03b73a3d49 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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -2294,17 +2293,17 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:33:32 GMT + - Fri, 29 Sep 2023 21:11:06 GMT Content-Type: - application/json Content-Length: - - '748' + - '760' Connection: - keep-alive Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE + - GET,HEAD,PUT,PATCH,POST,DELETE Access-Control-Allow-Origin: - "*" Access-Control-Expose-Headers: @@ -2313,18 +2312,34 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Fproducts;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 + 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' + Expires: + - '0' Idempotency-Key: - - 3bb98d9a-6204-4cee-a976-3448aff6a5e5 + - f5967bfa-cc4c-43ac-859b-ef03b73a3d49 Original-Request: - - req_kU1FAsHLjJi5KP + - req_DQV7QDN5pL5xFu + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_kU1FAsHLjJi5KP + - req_DQV7QDN5pL5xFu 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: @@ -2333,39 +2348,40 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ONXlX9StUVftIn", + "id": "prod_OjGUSNbe1UbYTK", "object": "product", "active": true, "attributes": [], - "created": 1691012012, + "created": 1696021865, "default_price": null, "description": "A great description", + "features": [], "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009As7vAAC", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009As7vAAC" + "salesforce_product2_id": "01t8N000002zK2CQAU", + "salesforce_product2_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01t8N000002zK2CQAU" }, - "name": "REST Product2 2023-08-02 00:00:00 UTC", + "name": "REST Product2 2023-09-29 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-02-000000-utc-72", + "sku": "rest-product2--2023-09-29-000000-utc-6", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1691012012, + "updated": 1696021866, "url": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:06 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009As7vAAC + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t8N000002zK2CQAU body: encoding: UTF-8 - string: '{"Stripe_ID__c":"prod_ONXlX9StUVftIn"}' + string: '{"Stripe_ID__c":"prod_OjGUSNbe1UbYTK"}' headers: User-Agent: - Faraday v2.4.0 @@ -2383,12 +2399,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:33:33 GMT + - Fri, 29 Sep 2023 21:11:06 GMT Set-Cookie: - - BrowserId=OvtWoDF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:33 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:33 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:33 + - BrowserId=tDRaU18MEe6paD9uZNlBrQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2403,14 +2419,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13718/5000000 + - api-usage=697/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:06 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%2701t7e000009As7vAAC%27%0A + 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%2701t8N000002zK2CQAU%27%0A body: encoding: US-ASCII string: '' @@ -2429,12 +2445,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:33 GMT + - Fri, 29 Sep 2023 21:11:06 GMT Set-Cookie: - - BrowserId=O1dZXjF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:33 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:33 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:33 + - BrowserId=tF_9_F8MEe6E5X1Ey17tEQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2447,7 +2463,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13719/5000000 + - api-usage=693/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2457,10 +2473,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:06 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%2701t7e000009As7vAAC%27%0A + 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%2701t8N000002zK2CQAU%27%0A body: encoding: US-ASCII string: '' @@ -2479,12 +2495,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:34 GMT + - Fri, 29 Sep 2023 21:11:06 GMT Set-Cookie: - - BrowserId=O5sZQTF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:34 + - BrowserId=tHd9RF8MEe6w_gFWpTIg2Q; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2497,7 +2513,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13713/5000000 + - api-usage=692/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2507,10 +2523,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:06 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009As7vAAC + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t8N000002zK2CQAU body: encoding: US-ASCII string: '' @@ -2529,12 +2545,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:34 GMT + - Fri, 29 Sep 2023 21:11:06 GMT Set-Cookie: - - BrowserId=O96LBTF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:34 + - BrowserId=tJG7zF8MEe6ZdZPnrQ05Ng; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2547,9 +2563,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13706/5000000 + - api-usage=691/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:33:33 GMT + - Fri, 29 Sep 2023 21:11:06 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2558,15 +2574,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009As7vAAC"},"Id":"01t7e000009As7vAAC","Name":"REST - Product2 2023-08-02 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-02T21:32:55.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:33.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:33:33.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/01t8N000002zK2CQAU"},"Id":"01t8N000002zK2CQAU","Name":"REST + Product2 2023-09-29 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-09-29T21:10:40.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:11:06.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:11:06.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_ONXlX9StUVftIn","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ONXlX9StUVftIn"}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + 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_OjGUSNbe1UbYTK","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OjGUSNbe1UbYTK"}' + recorded_at: Fri, 29 Sep 2023 21:11:06 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%278027e000001bQevAAE%27%0A + 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%278028N0000005mvLQAQ%27%0A body: encoding: US-ASCII string: '' @@ -2585,12 +2601,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:34 GMT + - Fri, 29 Sep 2023 21:11:07 GMT Set-Cookie: - - BrowserId=PB0aiTF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:34 + - BrowserId=tLKKdl8MEe6rANtKOELnrw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:07 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2603,7 +2619,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13720/5000000 + - api-usage=691/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2613,10 +2629,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:07 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%278027e000001bQevAAE%27%0A + 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%278028N0000005mvLQAQ%27%0A body: encoding: US-ASCII string: '' @@ -2635,12 +2651,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:35 GMT + - Fri, 29 Sep 2023 21:11:07 GMT Set-Cookie: - - BrowserId=PFbvCTF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:35 + - BrowserId=tMzwm18MEe6cp4MhMPTjlA; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:07 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2653,7 +2669,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13692/5000000 + - api-usage=693/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2663,10 +2679,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:07 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -2685,12 +2701,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:35 GMT + - Fri, 29 Sep 2023 21:11:07 GMT Set-Cookie: - - BrowserId=PJhlNzF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:35 + - BrowserId=tOo8A18MEe6nfRHpcPFuBQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:07 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2703,11 +2719,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13698/5000000 + - api-usage=696/5000000 Etag: - - '"6de44be0--gzip"' + - '"5f95fb82--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Fri, 29 Sep 2023 18:01:14 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3010,7 +3026,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 @@ -3026,7 +3043,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 @@ -3314,9 +3333,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 @@ -3368,7 +3396,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 @@ -4064,10 +4092,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: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:07 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaxAAH + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvfzQAA body: encoding: US-ASCII string: '' @@ -4086,12 +4114,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:36 GMT + - Fri, 29 Sep 2023 21:11:08 GMT Set-Cookie: - - BrowserId=PTc9djF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:36 + - BrowserId=tVM3Q18MEe6_t9fOSQF8gw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4104,9 +4132,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13707/5000000 + - api-usage=691/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:33:07 GMT + - Fri, 29 Sep 2023 21:10:48 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4115,15 +4143,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaxAAH"},"Id":"a0z7e00000BDKaxAAH","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"Q-01224","CreatedDate":"2023-08-02T21:33:00.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:07.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:33:07.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-02T21:33:07.000+0000","LastReferencedDate":"2023-08-02T21:33:07.000+0000","SBQQ__Account__c":"0017e00001iaMVWAA2","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST - Account 2023-08-02 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-02T21:33:07.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":"0067e00000NfEWKAA3","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":"0037e00001jI7oZAAS","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-02 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-02","SBQQ__Status__c":"Draft","SBQQ__SubscriptionTerm__c":12.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":1440.0,"SBQQ__ListAmount__c":1440.0,"SBQQ__NetAmount__c":1440.0,"SBQQ__RegularAmount__c":1440.0}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvfzQAA"},"Id":"a0z8N000000yvfzQAA","OwnerId":"0058N000004zYG5QAM","IsDeleted":false,"Name":"Q-00010","CreatedDate":"2023-09-29T21:10:42.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:10:48.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T21:10:48.000+0000","LastActivityDate":null,"LastViewedDate":"2023-09-29T21:10:48.000+0000","LastReferencedDate":"2023-09-29T21:10:48.000+0000","SBQQ__Account__c":"0018N00000JKmEmQAL","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-09-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-09-29T21:10:48.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":"0068N000006PoFmQAK","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":"01s8N000002d0dzQAA","SBQQ__PricebookId__c":"01s8N000002d0dzQAA","SBQQ__PrimaryContact__c":"0038N00000GEE5gQAH","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-09-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-09-29","SBQQ__Status__c":"Draft","SBQQ__SubscriptionTerm__c":12.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-10-29","SBQQ__TotalCustomerDiscountAmount__c":0.0,"SBQQ__Uncalculated__c":true,"SBQQ__CustomerAmount__c":1440.0,"SBQQ__ListAmount__c":1440.0,"SBQQ__NetAmount__c":1440.0,"SBQQ__RegularAmount__c":1440.0}' + recorded_at: Fri, 29 Sep 2023 21:11:08 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%2701t7e000009As7vAAC%27%0A + 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%2701t8N000002zK2CQAU%27%0A body: encoding: US-ASCII string: '' @@ -4142,12 +4170,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:37 GMT + - Fri, 29 Sep 2023 21:11:08 GMT Set-Cookie: - - BrowserId=PZIurjF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:37 + - BrowserId=tXCquV8MEe6cp4MhMPTjlA; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4160,7 +4188,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13743/5000000 + - api-usage=694/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -4170,13 +4198,13 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:08 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]=licensed&recurring[interval]=month&product=prod_ONXlX9StUVftIn&metadata[salesforce_pricebook_entry_id]=01u7e00000IsjjiAAB&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01u7e00000IsjjiAAB + string: currency=usd&unit_amount_decimal=12000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&product=prod_OjGUSNbe1UbYTK&metadata[salesforce_pricebook_entry_id]=01u8N000003ce4PQAQ&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F01u8N000003ce4PQAQ headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -4185,15 +4213,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_kU1FAsHLjJi5KP","request_duration_ms":265}}' + - '{"last_request_metrics":{"request_id":"req_DQV7QDN5pL5xFu","request_duration_ms":271}}' Idempotency-Key: - - 169e7a05-4d0f-41d8-855f-07cd757a85f2 + - 3f1ab197-eaab-45ba-942c-13e2f8bda99c 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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -4208,17 +4236,17 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:33:37 GMT + - Fri, 29 Sep 2023 21:11:08 GMT Content-Type: - application/json Content-Length: - - '822' + - '817' Connection: - keep-alive Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE + - GET,HEAD,PUT,PATCH,POST,DELETE Access-Control-Allow-Origin: - "*" Access-Control-Expose-Headers: @@ -4227,18 +4255,34 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Fprices;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 + 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' + Expires: + - '0' Idempotency-Key: - - 169e7a05-4d0f-41d8-855f-07cd757a85f2 + - 3f1ab197-eaab-45ba-942c-13e2f8bda99c Original-Request: - - req_4V58fbkR5hJkQq + - req_KKNcoJXDaq6vXf + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_4V58fbkR5hJkQq + - req_KKNcoJXDaq6vXf 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: @@ -4247,21 +4291,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NamflIsgf92XbAOAZrPPB89", + "id": "price_1NvnxoIsgf92XbAOPQWGSzZx", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691012017, + "created": 1696021868, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjjiAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjjiAAB" + "salesforce_pricebook_entry_id": "01u8N000003ce4PQAQ", + "salesforce_pricebook_entry_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01u8N000003ce4PQAQ" }, "nickname": null, - "product": "prod_ONXlX9StUVftIn", + "product": "prod_OjGUSNbe1UbYTK", "recurring": { "aggregate_usage": null, "interval": "month", @@ -4276,13 +4320,13 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:08 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IsjjiAAB + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u8N000003ce4PQAQ body: encoding: UTF-8 - string: '{"Stripe_ID__c":"price_1NamflIsgf92XbAOAZrPPB89"}' + string: '{"Stripe_ID__c":"price_1NvnxoIsgf92XbAOPQWGSzZx"}' headers: User-Agent: - Faraday v2.4.0 @@ -4300,12 +4344,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:33:37 GMT + - Fri, 29 Sep 2023 21:11:08 GMT Set-Cookie: - - BrowserId=PfAtVzF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:37 + - BrowserId=tcGwvV8MEe6kBBlvTwvkWQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4320,14 +4364,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13737/5000000 + - api-usage=692/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:08 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NamflIsgf92XbAOAZrPPB89 + uri: https://api.stripe.com/v1/customers/cus_OjGU2oGsjRmZD4?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -4339,13 +4383,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_4V58fbkR5hJkQq","request_duration_ms":233}}' + - '{"last_request_metrics":{"request_id":"req_KKNcoJXDaq6vXf","request_duration_ms":357}}' 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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -4360,17 +4404,17 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:33:38 GMT + - Fri, 29 Sep 2023 21:11:09 GMT Content-Type: - application/json Content-Length: - - '822' + - '843' Connection: - keep-alive Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE + - GET,HEAD,PUT,PATCH,POST,DELETE Access-Control-Allow-Origin: - "*" Access-Control-Expose-Headers: @@ -4380,11 +4424,13 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_0VOrt6LXKkN0FJ + - req_TXboQkhgNs4Qsm Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -4393,39 +4439,42 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NamflIsgf92XbAOAZrPPB89", - "object": "price", - "active": true, - "billing_scheme": "per_unit", - "created": 1691012017, - "currency": "usd", - "custom_unit_amount": null, + "id": "cus_OjGU2oGsjRmZD4", + "object": "customer", + "address": null, + "balance": 0, + "created": 1696021865, + "currency": null, + "default_currency": null, + "default_source": null, + "delinquent": false, + "description": null, + "discount": null, + "email": null, + "invoice_prefix": "EBE2D43E", + "invoice_settings": { + "custom_fields": null, + "default_payment_method": null, + "footer": null, + "rendering_options": null + }, "livemode": false, - "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjjiAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjjiAAB" - }, - "nickname": null, - "product": "prod_ONXlX9StUVftIn", - "recurring": { - "aggregate_usage": null, - "interval": "month", - "interval_count": 1, - "trial_period_days": null, - "usage_type": "licensed" + "salesforce_account_id": "0018N00000JKmEmQAL", + "salesforce_account_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/0018N00000JKmEmQAL" }, - "tax_behavior": "unspecified", - "tiers_mode": null, - "transform_quantity": null, - "type": "recurring", - "unit_amount": 12000, - "unit_amount_decimal": "12000" + "name": "REST Account 2023-09-29 00:00:00 UTC", + "next_invoice_sequence": 1, + "phone": null, + "preferred_locales": [], + "shipping": null, + "tax_exempt": "none", + "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:09 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ONXlbkb5sUGB5D?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/prices/price_1NvnxoIsgf92XbAOPQWGSzZx body: encoding: US-ASCII string: '' @@ -4437,13 +4486,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_0VOrt6LXKkN0FJ","request_duration_ms":191}}' + - '{"last_request_metrics":{"request_id":"req_TXboQkhgNs4Qsm","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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -4458,17 +4507,17 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:33:38 GMT + - Fri, 29 Sep 2023 21:11:09 GMT Content-Type: - application/json Content-Length: - - '848' + - '817' Connection: - keep-alive Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE + - GET,HEAD,PUT,PATCH,POST,DELETE Access-Control-Allow-Origin: - "*" Access-Control-Expose-Headers: @@ -4477,12 +4526,28 @@ http_interactions: - '300' Cache-Control: - no-cache, no-store + Content-Security-Policy: + - report-uri /csp-report?p=%2Fv1%2Fprices%2F%3Aprice;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 + 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' + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin Request-Id: - - req_ItwGR8xgeON7Wl + - req_rcssvUoDRnGEZn Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -4491,45 +4556,42 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONXlbkb5sUGB5D", - "object": "customer", - "address": null, - "balance": 0, - "created": 1691012011, - "currency": null, - "default_currency": null, - "default_source": null, - "delinquent": false, - "description": null, - "discount": null, - "email": null, - "invoice_prefix": "E45AB049", - "invoice_settings": { - "custom_fields": null, - "default_payment_method": null, - "footer": null, - "rendering_options": null - }, + "id": "price_1NvnxoIsgf92XbAOPQWGSzZx", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1696021868, + "currency": "usd", + "custom_unit_amount": null, "livemode": false, + "lookup_key": null, "metadata": { - "salesforce_account_id": "0017e00001iaMVWAA2", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaMVWAA2" + "salesforce_pricebook_entry_id": "01u8N000003ce4PQAQ", + "salesforce_pricebook_entry_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01u8N000003ce4PQAQ" }, - "name": "REST Account 2023-08-02 00:00:00 UTC", - "next_invoice_sequence": 1, - "phone": null, - "preferred_locales": [], - "shipping": null, - "tax_exempt": "none", - "test_clock": null + "nickname": null, + "product": "prod_OjGUSNbe1UbYTK", + "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": 12000, + "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:09 GMT - request: method: post uri: https://api.stripe.com/v1/subscription_schedules body: encoding: UTF-8 - string: end_behavior=cancel&metadata[salesforce_order_id]=8017e000000nR85AAE&metadata[salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nR85AAE&start_date=1690934400&customer=cus_ONXlbkb5sUGB5D&phases[0][items][0][price]=price_1NamflIsgf92XbAOAZrPPB89&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bQevAAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQevAAE&phases[0][items][0][quantity]=1&phases[0][end_date]=1722556800&phases[0][metadata][salesforce_order_id]=8017e000000nR85AAE&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nR85AAE + string: end_behavior=cancel&metadata[salesforce_order_id]=8018N0000002yWvQAI&metadata[salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N0000002yWvQAI&start_date=1695945600&customer=cus_OjGU2oGsjRmZD4&phases[0][items][0][price]=price_1NvnxoIsgf92XbAOPQWGSzZx&phases[0][items][0][metadata][salesforce_order_item_id]=8028N0000005mvLQAQ&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005mvLQAQ&phases[0][items][0][quantity]=1&phases[0][end_date]=1727568000&phases[0][metadata][salesforce_order_id]=8018N0000002yWvQAI&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N0000002yWvQAI headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -4538,15 +4600,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_ItwGR8xgeON7Wl","request_duration_ms":182}}' + - '{"last_request_metrics":{"request_id":"req_rcssvUoDRnGEZn","request_duration_ms":201}}' Idempotency-Key: - - 398193d4-6436-49ba-8156-3c902faba16f + - 764b382a-355e-44b6-9e9d-78ad49352df4 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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -4561,17 +4623,17 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:33:39 GMT + - Fri, 29 Sep 2023 21:11:09 GMT Content-Type: - application/json Content-Length: - - '2467' + - '2452' Connection: - keep-alive Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE + - GET,HEAD,PUT,PATCH,POST,DELETE Access-Control-Allow-Origin: - "*" Access-Control-Expose-Headers: @@ -4581,17 +4643,19 @@ http_interactions: Cache-Control: - no-cache, no-store Idempotency-Key: - - 398193d4-6436-49ba-8156-3c902faba16f + - 764b382a-355e-44b6-9e9d-78ad49352df4 Original-Request: - - req_jHZyDFPEuvA4sd + - req_FEshJ6GUBH3zvM Request-Id: - - req_jHZyDFPEuvA4sd + - req_FEshJ6GUBH3zvM 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: @@ -4600,17 +4664,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NamfmIsgf92XbAOFjpAlm80", + "id": "sub_sched_1NvnxpIsgf92XbAOaVyeipBJ", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691012018, + "created": 1696021869, "current_phase": { - "end_date": 1722556800, - "start_date": 1690934400 + "end_date": 1727568000, + "start_date": 1695945600 }, - "customer": "cus_ONXlbkb5sUGB5D", + "customer": "cus_OjGU2oGsjRmZD4", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -4629,8 +4693,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR85AAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR85AAE" + "salesforce_order_id": "8018N0000002yWvQAI", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N0000002yWvQAI" }, "phases": [ { @@ -4645,29 +4709,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722556800, + "end_date": 1727568000, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQevAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQevAAE" + "salesforce_order_item_id": "8028N0000005mvLQAQ", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005mvLQAQ" }, - "plan": "price_1NamflIsgf92XbAOAZrPPB89", - "price": "price_1NamflIsgf92XbAOAZrPPB89", + "plan": "price_1NvnxoIsgf92XbAOPQWGSzZx", + "price": "price_1NvnxoIsgf92XbAOPQWGSzZx", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR85AAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR85AAE" + "salesforce_order_id": "8018N0000002yWvQAI", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N0000002yWvQAI" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1695945600, "transfer_data": null, "trial_end": null } @@ -4677,16 +4741,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NamfmIsgf92XbAOQSUFQZac", + "subscription": "sub_1NvnxpIsgf92XbAOhphL7vGx", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:09 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR85AAE + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yWvQAI body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1NamfmIsgf92XbAOFjpAlm80"}' + string: '{"Stripe_ID__c":"sub_sched_1NvnxpIsgf92XbAOaVyeipBJ"}' headers: User-Agent: - Faraday v2.4.0 @@ -4704,12 +4768,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:33:39 GMT + - Fri, 29 Sep 2023 21:11:10 GMT Set-Cookie: - - BrowserId=PuUUzjF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:39 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:39 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:39 + - BrowserId=toMr0V8MEe6_t9fOSQF8gw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:10 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4724,14 +4788,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13738/5000000 + - api-usage=692/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:10 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NamfmIsgf92XbAOFjpAlm80?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NvnxpIsgf92XbAOaVyeipBJ?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -4743,13 +4807,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_jHZyDFPEuvA4sd","request_duration_ms":757}}' + - '{"last_request_metrics":{"request_id":"req_FEshJ6GUBH3zvM","request_duration_ms":617}}' 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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -4764,17 +4828,17 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:33:40 GMT + - Fri, 29 Sep 2023 21:11:10 GMT Content-Type: - application/json Content-Length: - - '3547' + - '3527' Connection: - keep-alive Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE + - GET,HEAD,PUT,PATCH,POST,DELETE Access-Control-Allow-Origin: - "*" Access-Control-Expose-Headers: @@ -4784,11 +4848,13 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_NiImbZ3i3BLVJn + - req_UdlAqtZDyBjx9j Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -4797,17 +4863,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NamfmIsgf92XbAOFjpAlm80", + "id": "sub_sched_1NvnxpIsgf92XbAOaVyeipBJ", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691012018, + "created": 1696021869, "current_phase": { - "end_date": 1722556800, - "start_date": 1690934400 + "end_date": 1727568000, + "start_date": 1695945600 }, - "customer": "cus_ONXlbkb5sUGB5D", + "customer": "cus_OjGU2oGsjRmZD4", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -4826,8 +4892,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR85AAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR85AAE" + "salesforce_order_id": "8018N0000002yWvQAI", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N0000002yWvQAI" }, "phases": [ { @@ -4842,33 +4908,33 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722556800, + "end_date": 1727568000, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQevAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQevAAE" + "salesforce_order_item_id": "8028N0000005mvLQAQ", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005mvLQAQ" }, - "plan": "price_1NamflIsgf92XbAOAZrPPB89", + "plan": "price_1NvnxoIsgf92XbAOPQWGSzZx", "price": { - "id": "price_1NamflIsgf92XbAOAZrPPB89", + "id": "price_1NvnxoIsgf92XbAOPQWGSzZx", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691012017, + "created": 1696021868, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjjiAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjjiAAB" + "salesforce_pricebook_entry_id": "01u8N000003ce4PQAQ", + "salesforce_pricebook_entry_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01u8N000003ce4PQAQ" }, "nickname": null, - "product": "prod_ONXlX9StUVftIn", + "product": "prod_OjGUSNbe1UbYTK", "recurring": { "aggregate_usage": null, "interval": "month", @@ -4888,12 +4954,12 @@ http_interactions: } ], "metadata": { - "salesforce_order_id": "8017e000000nR85AAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR85AAE" + "salesforce_order_id": "8018N0000002yWvQAI", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N0000002yWvQAI" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1695945600, "transfer_data": null, "trial_end": null } @@ -4903,13 +4969,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NamfmIsgf92XbAOQSUFQZac", + "subscription": "sub_1NvnxpIsgf92XbAOhphL7vGx", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:10 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%278017e000000nR5LAAU%27%20%20AND%20Status%20=%20%27Activated%27 + 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%278018N0000002yX0QAI%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -4928,12 +4994,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:40 GMT + - Fri, 29 Sep 2023 21:11:10 GMT Set-Cookie: - - BrowserId=P1ujZjF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:40 + - BrowserId=tt4dGF8MEe6_t9fOSQF8gw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:10 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4946,7 +5012,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13744/5000000 + - api-usage=693/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -4956,10 +5022,64 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:10 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/8018N0000002yX0QAI-8018N0000002yX0QAI + body: + encoding: UTF-8 + string: '{"Primary_Record_ID__c":"8018N0000002yX0QAI","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8018N0000002yX0QAI","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Failed + to sync amendment orders since not all amendment orders respect user''s custom + order filters. salesforce_object_type=Order salesforce_object_id=8018N0000002yX0QAI","Resolution_Status__c":"Error"}' + 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: + - Fri, 29 Sep 2023 21:11:10 GMT + Set-Cookie: + - BrowserId=tvkft18MEe6pXW3__ehaHg; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21: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 + Sforce-Limit-Info: + - api-usage=691/5000000 + Location: + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000O4glUAC" + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '{"id":"a1W8N000000O4glUAC","success":true,"errors":[],"created":true}' + recorded_at: Fri, 29 Sep 2023 21:11:10 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR5LAAU + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yX0QAI body: encoding: US-ASCII string: '' @@ -4978,12 +5098,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:40 GMT + - Fri, 29 Sep 2023 21:11:11 GMT Set-Cookie: - - BrowserId=P57t-zF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:40 + - BrowserId=tyEZbF8MEe6ZdZPnrQ05Ng; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:11 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4996,9 +5116,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13721/5000000 + - api-usage=692/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:33:23 GMT + - Fri, 29 Sep 2023 21:11:01 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -5007,13 +5127,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR5LAAU"},"Id":"8017e000000nR5LAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMVWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEe3AAF","EffectiveDate":"2023-08-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":"00001308","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:33:22.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:23.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:33:23.000+0000","LastViewedDate":"2023-08-02T21:33:24.000+0000","LastReferencedDate":"2023-08-02T21:33:24.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N0000002yX0QAI"},"Id":"8018N0000002yX0QAI","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKmEmQAL","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006PoFrQAK","EffectiveDate":"2023-09-29","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":"00000111","TotalAmount":1440.0,"CreatedDate":"2023-09-29T21:10:59.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:11:01.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T21:11:01.000+0000","LastViewedDate":"2023-09-29T21:11:01.000+0000","LastReferencedDate":"2023-09-29T21:11: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":"a0z7e00000BDKb2AAH","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Wed, 02 Aug 2023 21:22:26 GMT + Needed","SBQQ__Quote__c":"a0z8N000000yvg4QAA","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Fri, 29 Sep 2023 21:11:11 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR85AAE + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yWvQAI body: encoding: US-ASCII string: '' @@ -5032,12 +5152,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:33:41 GMT + - Fri, 29 Sep 2023 21:11:11 GMT Set-Cookie: - - BrowserId=P-2qdDF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:33:41 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:41 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:33:41 + - BrowserId=tzt_6l8MEe6pXW3__ehaHg; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 21:11:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 21:11:11 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5050,9 +5170,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13734/5000000 + - api-usage=692/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:33:39 GMT + - Fri, 29 Sep 2023 21:11:10 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -5061,13 +5181,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR85AAE"},"Id":"8017e000000nR85AAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMVWAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEWKAA3","EffectiveDate":"2023-08-02","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-02T21:33:09.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001307","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:33:07.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:33:39.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:33:39.000+0000","LastViewedDate":"2023-08-02T21:33:39.000+0000","LastReferencedDate":"2023-08-02T21:33:39.000+0000","SBQQ__Contracted__c":true,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8018N0000002yWvQAI"},"Id":"8018N0000002yWvQAI","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKmEmQAL","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006PoFmQAK","EffectiveDate":"2023-09-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-09-29T21:10:49.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000110","TotalAmount":1440.0,"CreatedDate":"2023-09-29T21:10:48.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T21:11:10.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T21:11:10.000+0000","LastViewedDate":"2023-09-29T21:11:10.000+0000","LastReferencedDate":"2023-09-29T21:11:10.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":"a0z7e00000BDKaxAAH","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1NamfmIsgf92XbAOFjpAlm80","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NamfmIsgf92XbAOFjpAlm80"}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + Needed","SBQQ__Quote__c":"a0z8N000000yvfzQAA","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1NvnxpIsgf92XbAOaVyeipBJ","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NvnxpIsgf92XbAOaVyeipBJ"}' + recorded_at: Fri, 29 Sep 2023 21:11:11 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NamfmIsgf92XbAOFjpAlm80 + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NvnxpIsgf92XbAOaVyeipBJ body: encoding: US-ASCII string: '' @@ -5079,13 +5199,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_NiImbZ3i3BLVJn","request_duration_ms":192}}' + - '{"last_request_metrics":{"request_id":"req_UdlAqtZDyBjx9j","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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -5100,17 +5220,17 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:33:41 GMT + - Fri, 29 Sep 2023 21:11:11 GMT Content-Type: - application/json Content-Length: - - '2467' + - '2452' Connection: - keep-alive Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE + - GET,HEAD,PUT,PATCH,POST,DELETE Access-Control-Allow-Origin: - "*" Access-Control-Expose-Headers: @@ -5120,11 +5240,13 @@ http_interactions: Cache-Control: - no-cache, no-store Request-Id: - - req_iMrjFznKgWlAzR + - req_dDmuha2nMgheTQ Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -5133,17 +5255,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NamfmIsgf92XbAOFjpAlm80", + "id": "sub_sched_1NvnxpIsgf92XbAOaVyeipBJ", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691012018, + "created": 1696021869, "current_phase": { - "end_date": 1722556800, - "start_date": 1690934400 + "end_date": 1727568000, + "start_date": 1695945600 }, - "customer": "cus_ONXlbkb5sUGB5D", + "customer": "cus_OjGU2oGsjRmZD4", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -5162,8 +5284,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR85AAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR85AAE" + "salesforce_order_id": "8018N0000002yWvQAI", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N0000002yWvQAI" }, "phases": [ { @@ -5178,29 +5300,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722556800, + "end_date": 1727568000, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQevAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQevAAE" + "salesforce_order_item_id": "8028N0000005mvLQAQ", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005mvLQAQ" }, - "plan": "price_1NamflIsgf92XbAOAZrPPB89", - "price": "price_1NamflIsgf92XbAOAZrPPB89", + "plan": "price_1NvnxoIsgf92XbAOPQWGSzZx", + "price": "price_1NvnxoIsgf92XbAOPQWGSzZx", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR85AAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR85AAE" + "salesforce_order_id": "8018N0000002yWvQAI", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N0000002yWvQAI" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1695945600, "transfer_data": null, "trial_end": null } @@ -5210,8 +5332,8 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NamfmIsgf92XbAOQSUFQZac", + "subscription": "sub_1NvnxpIsgf92XbAOhphL7vGx", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Fri, 29 Sep 2023 21:11:11 GMT recorded_with: VCR 6.2.0 diff --git a/test/vcr_cassettes/integration/amendments/test_termination/terminating_a_renewal_order_does_not_throw_an_error.yml b/test/vcr_cassettes/integration/amendments/test_termination/terminating_a_renewal_order_does_not_throw_an_error.yml new file mode 100644 index 0000000000..b1145082ef --- /dev/null +++ b/test/vcr_cassettes/integration/amendments/test_termination/terminating_a_renewal_order_does_not_throw_an_error.yml @@ -0,0 +1,8099 @@ +--- +http_interactions: +- 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-09-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":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: + - Fri, 29 Sep 2023 19:33:10 GMT + Set-Cookie: + - BrowserId=BhSeM17_Ee6rANtKOELnrw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=474/5000000 + Location: + - "/services/data/v58.0/sobjects/Product2/01t8N000002zJJ3QAM" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01t8N000002zJJ3QAM","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 19:33:10 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: + - Fri, 29 Sep 2023 19:33:11 GMT + Set-Cookie: + - BrowserId=Bk7BK17_Ee6cp4MhMPTjlA; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=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":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Fri, 29 Sep 2023 19:33:11 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":"01t8N000002zJJ3QAM","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: + - Fri, 29 Sep 2023 19:33:11 GMT + Set-Cookie: + - BrowserId=Bm6lTV7_Ee6E5X1Ey17tEQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=474/5000000 + Location: + - "/services/data/v58.0/sobjects/PricebookEntry/01u8N000003ce0uQAA" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01u8N000003ce0uQAA","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 19:33:11 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: + - Fri, 29 Sep 2023 19:33:11 GMT + Set-Cookie: + - BrowserId=BppJvF7_Ee6ZdZPnrQ05Ng; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=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":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s8N000002d0dzQAA"},"Id":"01s8N000002d0dzQAA"}]}' + recorded_at: Fri, 29 Sep 2023 19:33:11 GMT +- 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-09-29 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: + - Fri, 29 Sep 2023 19:33:11 GMT + Set-Cookie: + - BrowserId=BrQ6bV7_Ee6w_gFWpTIg2Q; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=474/5000000 + Location: + - "/services/data/v58.0/sobjects/Account/0018N00000JKlPDQA1" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0018N00000JKlPDQA1","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 19:33:11 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: + - Fri, 29 Sep 2023 19:33:12 GMT + Set-Cookie: + - BrowserId=BvUUBl7_Ee6w_gFWpTIg2Q; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:12 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:12 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=475/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: Fri, 29 Sep 2023 19:33:12 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-09-29 00:00:00 UTC","CloseDate":"2023-09-29","StageName":"Closed/Won","AccountId":"0018N00000JKlPDQA1"}' + 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: + - Fri, 29 Sep 2023 19:33:12 GMT + Set-Cookie: + - BrowserId=BywpnV7_Ee6w_gFWpTIg2Q; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:12 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:12 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=476/5000000 + Location: + - "/services/data/v58.0/sobjects/Opportunity/0068N000006Po54QAC" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0068N000006Po54QAC","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 19:33:12 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":"cancel_renewal_order_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: + - Fri, 29 Sep 2023 19:33:12 GMT + Set-Cookie: + - BrowserId=B2Kibl7_Ee6kBBlvTwvkWQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:12 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:12 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=474/5000000 + Location: + - "/services/data/v58.0/sobjects/Contact/0038N00000GEDeGQAX" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0038N00000GEDeGQAX","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 19:33:13 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":"0068N000006Po54QAC","SBQQ__PrimaryContact__c":"0038N00000GEDeGQAX","SBQQ__PricebookId__c":"01s8N000002d0dzQAA","SBQQ__StartDate__c":"2023-09-29","SBQQ__SubscriptionTerm__c":12}' + 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: + - Fri, 29 Sep 2023 19:33:13 GMT + Set-Cookie: + - BrowserId=B5_SIF7_Ee6Mpx-LZYdUxg; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=474/5000000 + Location: + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvdyQAA" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a0z8N000000yvdyQAA","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 19:33:13 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: + - Fri, 29 Sep 2023 19:33:14 GMT + Set-Cookie: + - BrowserId=CCK-al7_Ee6paD9uZNlBrQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:14 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:14 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=475/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: Fri, 29 Sep 2023 19:33:14 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z8N000000yvdyQAA + 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: + - Fri, 29 Sep 2023 19:33:14 GMT + Set-Cookie: + - BrowserId=CEBYI17_Ee6avPkwqjwF2g; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:14 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:14 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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\":\"a0z8N000000yvdyQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvdyQAA\"},\"Id\":\"a0z8N000000yvdyQAA\",\"Name\":\"Q-00003\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKlPDQA1\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"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\":\"0068N000006Po54QAC\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPDQA1\"},\"Id\":\"0018N00000JKlPDQA1\",\"Name\":\"REST + Account 2023-09-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/0068N000006Po54QAC\"},\"Id\":\"0068N000006Po54QAC\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvdyQAA\",\"AccountId\":\"0018N00000JKlPDQA1\"},\"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: Fri, 29 Sep 2023 19:33:14 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t8N000002zJJ3QAM + 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: + - Fri, 29 Sep 2023 19:33:14 GMT + Set-Cookie: + - BrowserId=CKkFal7_Ee6_t9fOSQF8gw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:15 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:15 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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/v58.0/sobjects/Product2/01t8N000002zJJ3QAM\"},\"Id\":\"01t8N000002zJJ3QAM\",\"Name\":\"REST + Product2 2023-09-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__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\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01u8N000003ce0uQAA\"},\"Product2Id\":\"01t8N000002zJJ3QAM\",\"Id\":\"01u8N000003ce0uQAA\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Fri, 29 Sep 2023 19:33:15 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\":\"a0z8N000000yvdyQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvdyQAA\"},\"Id\":\"a0z8N000000yvdyQAA\",\"Name\":\"Q-00003\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKlPDQA1\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"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\":\"0068N000006Po54QAC\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPDQA1\"},\"Id\":\"0018N00000JKlPDQA1\",\"Name\":\"REST + Account 2023-09-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/0068N000006Po54QAC\"},\"Id\":\"0068N000006Po54QAC\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvdyQAA\",\"AccountId\":\"0018N00000JKlPDQA1\"},\"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/01t8N000002zJJ3QAM\"},\"Id\":\"01t8N000002zJJ3QAM\",\"Name\":\"REST + Product2 2023-09-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__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\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01u8N000003ce0uQAA\"},\"Product2Id\":\"01t8N000002zJJ3QAM\",\"Id\":\"01u8N000003ce0uQAA\",\"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: + - Fri, 29 Sep 2023 19:33:15 GMT + Set-Cookie: + - BrowserId=CPY6sl7_Ee6rANtKOELnrw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:15 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:15 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvdyQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvdyQAA\"},\"Id\":\"a0z8N000000yvdyQAA\",\"Name\":\"Q-00003\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKlPDQA1\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"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\":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\":\"0068N000006Po54QAC\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPDQA1\"},\"Id\":\"0018N00000JKlPDQA1\",\"Name\":\"REST + Account 2023-09-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/0068N000006Po54QAC\"},\"Id\":\"0068N000006Po54QAC\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvdyQAA\",\"AccountId\":\"0018N00000JKlPDQA1\"},\"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\":1440.00,\"netNonSegmentTotal\":1440.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvdyQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000yvdyQAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zJJ3QAM\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u8N000003ce0uQAA\",\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000008\",\"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\":12,\"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__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-09-29 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__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zJJ3QAM\"},\"Id\":\"01t8N000002zJJ3QAM\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 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__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-09-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Fri, 29 Sep 2023 19:33:16 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\":\"a0z8N000000yvdyQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvdyQAA\"},\"Id\":\"a0z8N000000yvdyQAA\",\"Name\":\"Q-00003\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKlPDQA1\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"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\":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\":\"0068N000006Po54QAC\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPDQA1\"},\"Id\":\"0018N00000JKlPDQA1\",\"Name\":\"REST + Account 2023-09-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/0068N000006Po54QAC\"},\"Id\":\"0068N000006Po54QAC\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvdyQAA\",\"AccountId\":\"0018N00000JKlPDQA1\"},\"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\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvdyQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000yvdyQAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zJJ3QAM\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u8N000003ce0uQAA\",\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000008\",\"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\":12,\"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__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-09-29 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__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zJJ3QAM\"},\"Id\":\"01t8N000002zJJ3QAM\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 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__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-09-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.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: + - Fri, 29 Sep 2023 19:33:16 GMT + Set-Cookie: + - BrowserId=CdrODF7_Ee6YVi3i9wy2Pw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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\":\"a0z8N000000yvdyQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvdyQAA\"},\"Id\":\"a0z8N000000yvdyQAA\",\"Name\":\"Q-00003\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKlPDQA1\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"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\":\"0068N000006Po54QAC\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPDQA1\"},\"Id\":\"0018N00000JKlPDQA1\",\"Name\":\"REST + Account 2023-09-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/0068N000006Po54QAC\"},\"Id\":\"0068N000006Po54QAC\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvdyQAA\",\"AccountId\":\"0018N00000JKlPDQA1\"},\"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\":1440.00,\"netNonSegmentTotal\":1440.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvdyQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000yvdyQAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zJJ3QAM\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u8N000003ce0uQAA\",\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000009\",\"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\":12,\"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__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-09-29 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__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zJJ3QAM\"},\"Id\":\"01t8N000002zJJ3QAM\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 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__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-09-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Fri, 29 Sep 2023 19:33:18 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\":\"a0z8N000000yvdyQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvdyQAA\"},\"Id\":\"a0z8N000000yvdyQAA\",\"Name\":\"Q-00003\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKlPDQA1\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"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\":\"0068N000006Po54QAC\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPDQA1\"},\"Id\":\"0018N00000JKlPDQA1\",\"Name\":\"REST + Account 2023-09-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/0068N000006Po54QAC\"},\"Id\":\"0068N000006Po54QAC\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvdyQAA\",\"AccountId\":\"0018N00000JKlPDQA1\"},\"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\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvdyQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000yvdyQAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zJJ3QAM\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u8N000003ce0uQAA\",\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000009\",\"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\":12,\"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__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-09-29 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__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zJJ3QAM\"},\"Id\":\"01t8N000002zJJ3QAM\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 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__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-09-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.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: + - Fri, 29 Sep 2023 19:33:18 GMT + Set-Cookie: + - BrowserId=CqtlUV7_Ee6iGtOYdb4BdQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvdyQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvdyQAA\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0068N000006Po54QAC\"},\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yvdyQAA\",\"AccountId\":\"0018N00000JKlPDQA1\",\"Id\":\"0068N000006Po54QAC\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPDQA1\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0018N00000JKlPDQA1\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-09-29 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00003\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.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\":\"0018N00000JKlPDQA1\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-09-29\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0068N000006Po54QAC\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z8N000000yvdyQAA\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yvdyQAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpNrQAK\"},\"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-09-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\":\"a0z8N000000yvdyQAA\",\"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\":\"a0v8N000002SpNrQAK\",\"SBQQ__EffectiveSubscriptionTerm__c\":12.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\":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\":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-0000009\",\"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\":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\":\"01u8N000003ce0uQAA\",\"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/v58.0/sobjects/Product2/01t8N000002zJJ3QAM\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000002zJJ3QAM\",\"Name\":\"REST + Product2 2023-09-29 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000002zJJ3QAM\",\"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-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Fri, 29 Sep 2023 19:33:18 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yvdyQAA + 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: + - Fri, 29 Sep 2023 19:33:18 GMT + Set-Cookie: + - BrowserId=CwqcI17_Ee6E5X1Ey17tEQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:18 + 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=477/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Fri, 29 Sep 2023 19:33:20 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z8N000000yvdyQAA/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: + - Fri, 29 Sep 2023 19:33:20 GMT + Set-Cookie: + - BrowserId=DBFd8F7_Ee6nfRHpcPFuBQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=476/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/8018N0000002yUMQAY"},"Id":"8018N0000002yUMQAY","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKlPDQA1","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006Po54QAC","EffectiveDate":"2023-09-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":"00000103","TotalAmount":1440.0,"CreatedDate":"2023-09-29T19:33:19.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:20.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T19:33:20.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":"a0z8N000000yvdyQAA","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Fri, 29 Sep 2023 19:33:20 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yUMQAY + 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: + - Fri, 29 Sep 2023 19:33:20 GMT + Set-Cookie: + - BrowserId=DDPZTV7_Ee6doQESQuIQuQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:20 + 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: Fri, 29 Sep 2023 19:33:21 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yUMQAY + 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: + - Fri, 29 Sep 2023 19:33:21 GMT + Set-Cookie: + - BrowserId=DKFoQ17_Ee6WqO1PqYZEZA; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=476/5000000 + Last-Modified: + - Fri, 29 Sep 2023 19:33:21 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/8018N0000002yUMQAY"},"Id":"8018N0000002yUMQAY","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKlPDQA1","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006Po54QAC","EffectiveDate":"2023-09-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-09-29T19:33:21.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000103","TotalAmount":1440.0,"CreatedDate":"2023-09-29T19:33:19.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:21.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T19:33:21.000+0000","LastViewedDate":"2023-09-29T19:33:20.000+0000","LastReferencedDate":"2023-09-29T19:33:20.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":"a0z8N000000yvdyQAA","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Fri, 29 Sep 2023 19:33:21 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%278018N0000002yUMQAY%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: + - Fri, 29 Sep 2023 19:33:22 GMT + Set-Cookie: + - BrowserId=DN2Hd17_Ee63JXvdedQYag; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:22 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:22 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=476/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/8028N0000005muEQAQ"},"Id":"8028N0000005muEQAQ"}]}' + recorded_at: Fri, 29 Sep 2023 19:33:22 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005muEQAQ + 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: + - Fri, 29 Sep 2023 19:33:22 GMT + Set-Cookie: + - BrowserId=DP25w17_Ee6cp4MhMPTjlA; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:22 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:22 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=477/5000000 + Last-Modified: + - Fri, 29 Sep 2023 19:33:21 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/8028N0000005muEQAQ"},"Id":"8028N0000005muEQAQ","Product2Id":"01t8N000002zJJ3QAM","IsDeleted":false,"OrderId":"8018N0000002yUMQAY","PricebookEntryId":"01u8N000003ce0uQAA","OriginalOrderItemId":null,"AvailableQuantity":1.0,"Quantity":1.0,"UnitPrice":1440.0,"ListPrice":120.0,"TotalPrice":1440.0,"ServiceDate":"2023-09-29","EndDate":"2024-09-28","Description":null,"CreatedDate":"2023-09-29T19:33:20.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:21.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:21.000+0000","OrderItemNumber":"0000000004","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":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":12.0,"SBQQ__QuoteLine__c":"a0v8N000002SpNrQAK","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":12.0,"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: Fri, 29 Sep 2023 19:33:22 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-09-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":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: + - Fri, 29 Sep 2023 19:33:22 GMT + Set-Cookie: + - BrowserId=DRuhM17_Ee6kBBlvTwvkWQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:22 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:22 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=476/5000000 + Location: + - "/services/data/v58.0/sobjects/Product2/01t8N000002zJJ8QAM" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01t8N000002zJJ8QAM","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 19:33:22 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: + - Fri, 29 Sep 2023 19:33:22 GMT + Set-Cookie: + - BrowserId=DVbWCl7_Ee6w_gFWpTIg2Q; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:22 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:22 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=479/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: Fri, 29 Sep 2023 19:33:22 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":"01t8N000002zJJ8QAM","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: + - Fri, 29 Sep 2023 19:33:23 GMT + Set-Cookie: + - BrowserId=DXRJIF7_Ee6w_gFWpTIg2Q; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=480/5000000 + Location: + - "/services/data/v58.0/sobjects/PricebookEntry/01u8N000003ce0zQAA" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01u8N000003ce0zQAA","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 19:33:23 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: + - Fri, 29 Sep 2023 19:33:23 GMT + Set-Cookie: + - BrowserId=DZkOz17_Ee6WqO1PqYZEZA; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=477/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: Fri, 29 Sep 2023 19:33:23 GMT +- 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-09-29 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: + - Fri, 29 Sep 2023 19:33:23 GMT + Set-Cookie: + - BrowserId=DbHHZ17_Ee6B9SGa1e-7uQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=476/5000000 + Location: + - "/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0018N00000JKlPSQA1","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 19:33:23 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: + - Fri, 29 Sep 2023 19:33:23 GMT + Set-Cookie: + - BrowserId=DfppRl7_Ee63JXvdedQYag; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=477/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: Fri, 29 Sep 2023 19:33:23 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-09-29 00:00:00 UTC","CloseDate":"2023-09-29","StageName":"Closed/Won","AccountId":"0018N00000JKlPSQA1"}' + 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: + - Fri, 29 Sep 2023 19:33:24 GMT + Set-Cookie: + - BrowserId=DhI2JF7_Ee6cp4MhMPTjlA; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=478/5000000 + Location: + - "/services/data/v58.0/sobjects/Opportunity/0068N000006Po59QAC" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0068N000006Po59QAC","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 19:33:24 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":"cancel_renewal_order_3@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: + - Fri, 29 Sep 2023 19:33:24 GMT + Set-Cookie: + - BrowserId=DlfyG17_Ee6paD9uZNlBrQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=477/5000000 + Location: + - "/services/data/v58.0/sobjects/Contact/0038N00000GEDeVQAX" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0038N00000GEDeVQAX","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 19:33:24 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":"0068N000006Po59QAC","SBQQ__PrimaryContact__c":"0038N00000GEDeVQAX","SBQQ__PricebookId__c":"01s8N000002d0dzQAA","SBQQ__StartDate__c":"2023-09-29","SBQQ__SubscriptionTerm__c":12}' + 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: + - Fri, 29 Sep 2023 19:33:24 GMT + Set-Cookie: + - BrowserId=Do4duV7_Ee6B9SGa1e-7uQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=477/5000000 + Location: + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve3QAA" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a0z8N000000yve3QAA","success":true,"errors":[]}' + recorded_at: Fri, 29 Sep 2023 19:33:25 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: + - Fri, 29 Sep 2023 19:33:25 GMT + Set-Cookie: + - BrowserId=DwIUbF7_Ee63JXvdedQYag; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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 + Sforce-Limit-Info: + - api-usage=478/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: Fri, 29 Sep 2023 19:33:25 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z8N000000yve3QAA + 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: + - Fri, 29 Sep 2023 19:33:25 GMT + Set-Cookie: + - BrowserId=DxzwTl7_Ee6B9SGa1e-7uQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yve3QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve3QAA\"},\"Id\":\"a0z8N000000yve3QAA\",\"Name\":\"Q-00004\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKlPSQA1\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"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\":\"0068N000006Po59QAC\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1\"},\"Id\":\"0018N00000JKlPSQA1\",\"Name\":\"REST + Account 2023-09-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/0068N000006Po59QAC\"},\"Id\":\"0068N000006Po59QAC\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yve3QAA\",\"AccountId\":\"0018N00000JKlPSQA1\"},\"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: Fri, 29 Sep 2023 19:33:26 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t8N000002zJJ8QAM + 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: + - Fri, 29 Sep 2023 19:33:26 GMT + Set-Cookie: + - BrowserId=D4BFBV7_Ee6B9SGa1e-7uQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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 + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zJJ8QAM\"},\"Id\":\"01t8N000002zJJ8QAM\",\"Name\":\"REST + Product2 2023-09-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__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\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01u8N000003ce0zQAA\"},\"Product2Id\":\"01t8N000002zJJ8QAM\",\"Id\":\"01u8N000003ce0zQAA\",\"Pricebook2Id\":\"01s8N000002d0dzQAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Fri, 29 Sep 2023 19:33:26 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\":\"a0z8N000000yve3QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve3QAA\"},\"Id\":\"a0z8N000000yve3QAA\",\"Name\":\"Q-00004\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKlPSQA1\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"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\":\"0068N000006Po59QAC\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1\"},\"Id\":\"0018N00000JKlPSQA1\",\"Name\":\"REST + Account 2023-09-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/0068N000006Po59QAC\"},\"Id\":\"0068N000006Po59QAC\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yve3QAA\",\"AccountId\":\"0018N00000JKlPSQA1\"},\"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/01t8N000002zJJ8QAM\"},\"Id\":\"01t8N000002zJJ8QAM\",\"Name\":\"REST + Product2 2023-09-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__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\",\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01u8N000003ce0zQAA\"},\"Product2Id\":\"01t8N000002zJJ8QAM\",\"Id\":\"01u8N000003ce0zQAA\",\"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: + - Fri, 29 Sep 2023 19:33:26 GMT + Set-Cookie: + - BrowserId=D83wxV7_Ee6w_gFWpTIg2Q; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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 + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yve3QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve3QAA\"},\"Id\":\"a0z8N000000yve3QAA\",\"Name\":\"Q-00004\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKlPSQA1\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"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\":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\":\"0068N000006Po59QAC\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1\"},\"Id\":\"0018N00000JKlPSQA1\",\"Name\":\"REST + Account 2023-09-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/0068N000006Po59QAC\"},\"Id\":\"0068N000006Po59QAC\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yve3QAA\",\"AccountId\":\"0018N00000JKlPSQA1\"},\"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\":1440.00,\"netNonSegmentTotal\":1440.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yve3QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000yve3QAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zJJ8QAM\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u8N000003ce0zQAA\",\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000011\",\"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\":12,\"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__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-09-29 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__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zJJ8QAM\"},\"Id\":\"01t8N000002zJJ8QAM\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 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__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-09-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Fri, 29 Sep 2023 19:33:28 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\":\"a0z8N000000yve3QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve3QAA\"},\"Id\":\"a0z8N000000yve3QAA\",\"Name\":\"Q-00004\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKlPSQA1\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"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\":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\":\"0068N000006Po59QAC\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1\"},\"Id\":\"0018N00000JKlPSQA1\",\"Name\":\"REST + Account 2023-09-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/0068N000006Po59QAC\"},\"Id\":\"0068N000006Po59QAC\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yve3QAA\",\"AccountId\":\"0018N00000JKlPSQA1\"},\"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\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yve3QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000yve3QAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zJJ8QAM\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u8N000003ce0zQAA\",\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000011\",\"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\":12,\"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__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-09-29 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__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zJJ8QAM\"},\"Id\":\"01t8N000002zJJ8QAM\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 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__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-09-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.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: + - Fri, 29 Sep 2023 19:33:28 GMT + Set-Cookie: + - BrowserId=ELGZMl7_Ee6Mpx-LZYdUxg; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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 + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yve3QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve3QAA\"},\"Id\":\"a0z8N000000yve3QAA\",\"Name\":\"Q-00004\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKlPSQA1\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"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\":\"0068N000006Po59QAC\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1\"},\"Id\":\"0018N00000JKlPSQA1\",\"Name\":\"REST + Account 2023-09-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/0068N000006Po59QAC\"},\"Id\":\"0068N000006Po59QAC\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yve3QAA\",\"AccountId\":\"0018N00000JKlPSQA1\"},\"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\":1440.00,\"netNonSegmentTotal\":1440.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yve3QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000yve3QAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zJJ8QAM\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u8N000003ce0zQAA\",\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000012\",\"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\":12,\"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__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-09-29 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__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zJJ8QAM\"},\"Id\":\"01t8N000002zJJ8QAM\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 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__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-09-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Fri, 29 Sep 2023 19:33:29 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\":\"a0z8N000000yve3QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve3QAA\"},\"Id\":\"a0z8N000000yve3QAA\",\"Name\":\"Q-00004\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0018N00000JKlPSQA1\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s8N000002d0dzQAA\",\"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\":\"0068N000006Po59QAC\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1\"},\"Id\":\"0018N00000JKlPSQA1\",\"Name\":\"REST + Account 2023-09-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/0068N000006Po59QAC\"},\"Id\":\"0068N000006Po59QAC\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yve3QAA\",\"AccountId\":\"0018N00000JKlPSQA1\"},\"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\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yve3QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z8N000000yve3QAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zJJ8QAM\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u8N000003ce0zQAA\",\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000012\",\"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\":12,\"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__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-09-29 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__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zJJ8QAM\"},\"Id\":\"01t8N000002zJJ8QAM\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 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__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-09-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.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: + - Fri, 29 Sep 2023 19:33:29 GMT + Set-Cookie: + - BrowserId=EXHcMF7_Ee6rANtKOELnrw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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 + 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\":\"a0z8N000000yve3QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve3QAA\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0068N000006Po59QAC\"},\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yve3QAA\",\"AccountId\":\"0018N00000JKlPSQA1\",\"Id\":\"0068N000006Po59QAC\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0018N00000JKlPSQA1\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-09-29 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00004\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.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\":\"0018N00000JKlPSQA1\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-09-29\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0068N000006Po59QAC\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z8N000000yve3QAA\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yve3QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpO6QAK\"},\"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-09-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\":\"a0z8N000000yve3QAA\",\"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\":\"a0v8N000002SpO6QAK\",\"SBQQ__EffectiveSubscriptionTerm__c\":12.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\":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\":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-0000012\",\"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\":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\":\"01u8N000003ce0zQAA\",\"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/v58.0/sobjects/Product2/01t8N000002zJJ8QAM\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000002zJJ8QAM\",\"Name\":\"REST + Product2 2023-09-29 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000002zJJ8QAM\",\"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-29\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Fri, 29 Sep 2023 19:33:30 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve3QAA + 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: + - Fri, 29 Sep 2023 19:33:30 GMT + Set-Cookie: + - BrowserId=Eb4nU17_Ee6Mpx-LZYdUxg; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=478/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Fri, 29 Sep 2023 19:33:31 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z8N000000yve3QAA/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: + - Fri, 29 Sep 2023 19:33:32 GMT + Set-Cookie: + - BrowserId=Etzdp17_Ee6YVi3i9wy2Pw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=477/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/8018N0000002yURQAY"},"Id":"8018N0000002yURQAY","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKlPSQA1","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006Po59QAC","EffectiveDate":"2023-09-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":"00000104","TotalAmount":1440.0,"CreatedDate":"2023-09-29T19:33:30.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:31.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T19:33: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":"Not + Needed","SBQQ__Quote__c":"a0z8N000000yve3QAA","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Fri, 29 Sep 2023 19:33:32 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yURQAY + 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: + - Fri, 29 Sep 2023 19:33:32 GMT + Set-Cookie: + - BrowserId=ExoOXV7_Ee6kBBlvTwvkWQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:32 + 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=477/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Fri, 29 Sep 2023 19:33:33 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yURQAY + 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: + - Fri, 29 Sep 2023 19:33:33 GMT + Set-Cookie: + - BrowserId=E5a34V7_Ee6YVi3i9wy2Pw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=478/5000000 + Last-Modified: + - Fri, 29 Sep 2023 19:33:32 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/8018N0000002yURQAY"},"Id":"8018N0000002yURQAY","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKlPSQA1","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006Po59QAC","EffectiveDate":"2023-09-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-09-29T19:33:32.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000104","TotalAmount":1440.0,"CreatedDate":"2023-09-29T19:33:30.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:32.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T19:33:32.000+0000","LastViewedDate":"2023-09-29T19:33:32.000+0000","LastReferencedDate":"2023-09-29T19:33: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":"Not + Needed","SBQQ__Quote__c":"a0z8N000000yve3QAA","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Fri, 29 Sep 2023 19:33:33 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%278018N0000002yURQAY%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: + - Fri, 29 Sep 2023 19:33:33 GMT + Set-Cookie: + - BrowserId=E8KDCF7_Ee6Mpx-LZYdUxg; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=479/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/8028N0000005muJQAQ"},"Id":"8028N0000005muJQAQ"}]}' + recorded_at: Fri, 29 Sep 2023 19:33:33 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005muJQAQ + 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: + - Fri, 29 Sep 2023 19:33:33 GMT + Set-Cookie: + - BrowserId=E9tilV7_Ee6nfRHpcPFuBQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=477/5000000 + Last-Modified: + - Fri, 29 Sep 2023 19:33:32 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/8028N0000005muJQAQ"},"Id":"8028N0000005muJQAQ","Product2Id":"01t8N000002zJJ8QAM","IsDeleted":false,"OrderId":"8018N0000002yURQAY","PricebookEntryId":"01u8N000003ce0zQAA","OriginalOrderItemId":null,"AvailableQuantity":1.0,"Quantity":1.0,"UnitPrice":1440.0,"ListPrice":120.0,"TotalPrice":1440.0,"ServiceDate":"2023-09-29","EndDate":"2024-09-28","Description":null,"CreatedDate":"2023-09-29T19:33:30.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:32.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:32.000+0000","OrderItemNumber":"0000000005","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":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":12.0,"SBQQ__QuoteLine__c":"a0v8N000002SpO6QAK","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":12.0,"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: Fri, 29 Sep 2023 19:33:33 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/OrderItem/8028N0000005muJQAQ + body: + encoding: UTF-8 + string: '{"SBQQ__RevisedOrderProduct__c":"8028N0000005muEQAQ"}' + 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: + - Fri, 29 Sep 2023 19:33:34 GMT + Set-Cookie: + - BrowserId=FACdTF7_Ee6ZdZPnrQ05Ng; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=477/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Fri, 29 Sep 2023 19:33:34 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yURQAY + 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: + - Fri, 29 Sep 2023 19:33:34 GMT + Set-Cookie: + - BrowserId=FFK1hF7_Ee6nfRHpcPFuBQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=478/5000000 + Last-Modified: + - Fri, 29 Sep 2023 19:33:32 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/8018N0000002yURQAY"},"Id":"8018N0000002yURQAY","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKlPSQA1","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006Po59QAC","EffectiveDate":"2023-09-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-09-29T19:33:32.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000104","TotalAmount":1440.0,"CreatedDate":"2023-09-29T19:33:30.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:32.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T19:33:32.000+0000","LastViewedDate":"2023-09-29T19:33:34.000+0000","LastReferencedDate":"2023-09-29T19:33: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":"a0z8N000000yve3QAA","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.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: Fri, 29 Sep 2023 19:33:34 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":["8018N0000002yURQAY"]}' + 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: + - Fri, 29 Sep 2023 19:33:34 GMT + Set-Cookie: + - BrowserId=FHV_CF7_Ee6paD9uZNlBrQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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 + Content-Type: + - application/json + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v58.0/sobjects/Contact/0038N00000GEDeVQAX"},"Id":"0038N00000GEDeVQAX","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"cancel_renewal_order_3@example.com","OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:24.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:24.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:24.000+0000","LastViewedDate":"2023-09-29T19:33:24.000+0000","LastReferencedDate":"2023-09-29T19:33:24.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0038N00000GEDeVQAX","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006Po59QAC"},"Id":"0068N000006Po59QAC","IsDeleted":false,"AccountId":"0018N00000JKlPSQA1","IsPrivate":false,"Name":"REST + Opportunity 2023-09-29 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-09-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:24.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:25.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:25.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-09-29T19:33:24.000+0000","LastReferencedDate":"2023-09-29T19:33:24.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z8N000000yve3QAA","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1"},"Id":"0018N00000JKlPSQA1","IsDeleted":false,"Name":"REST + Account 2023-09-29 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0018N00000JKlPSQA1","OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:23.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:23.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:23.000+0000","LastViewedDate":"2023-09-29T19:33:23.000+0000","LastReferencedDate":"2023-09-29T19:33:23.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":["0018N00000JKlPSQA1"],"Opportunities":["0068N000006Po59QAC"],"Contacts":["0038N00000GEDeVQAX"],"SBQQ__RegularAmount__c":1440.00,"SBQQ__NetAmount__c":1440.00,"SBQQ__ListAmount__c":1440.00,"SBQQ__CustomerAmount__c":1440.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-10-29","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":12,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-09-29","SBQQ__ShippingName__c":"REST + Account 2023-09-29 00:00:00 UTC","SBQQ__SalesRep__c":"0058N000004zYG5QAM","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0038N00000GEDeVQAX","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":"0068N000006Po59QAC","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-09-29T19:33:30.000+0000","SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST + Account 2023-09-29 00:00:00 UTC","SBQQ__Account__c":"0018N00000JKlPSQA1","LastReferencedDate":"2023-09-29T19:33:30.000+0000","LastViewedDate":"2023-09-29T19:33:30.000+0000","SystemModstamp":"2023-09-29T19:33:30.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:30.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:25.000+0000","Name":"Q-00004","IsDeleted":false,"OwnerId":"0058N000004zYG5QAM","Id":"a0z8N000000yve3QAA","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve3QAA","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t8N000002zJJ8QAM"},"Id":"01t8N000002zJJ8QAM","Name":"REST + Product2 2023-09-29 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-09-29T19:33:22.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:22.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:23.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/v58.0/sobjects/PricebookEntry/01u8N000003ce0zQAA"},"Id":"01u8N000003ce0zQAA","Name":"REST + Product2 2023-09-29 00:00:00 UTC","Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000002zJJ8QAM","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-09-29T19:33:23.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:23.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:23.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/a0v8N000002SpO6QAK"},"Id":"a0v8N000002SpO6QAK","IsDeleted":false,"Name":"QL-0000013","CreatedDate":"2023-09-29T19:33:30.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:30.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:30.000+0000","SBQQ__Quote__c":"a0z8N000000yve3QAA","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__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":"01u8N000003ce0zQAA","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000002zJJ8QAM","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__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":1440.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-09-29","SBQQ__EffectiveSubscriptionTerm__c":12,"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-09-29 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":["01t8N000002zJJ8QAM"],"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__SubscriptionTerm__c":12,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8028N0000005muEQAQ","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002SpO6QAK","SBQQ__ProrateMultiplier__c":12.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__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000005","SystemModstamp":"2023-09-29T19:33:34.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:34.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:30.000+0000","EndDate":"2024-09-28","ServiceDate":"2023-09-29","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003ce0zQAA","OrderId":"8018N0000002yURQAY","IsDeleted":false,"Product2Id":"01t8N000002zJJ8QAM","Id":"8028N0000005muJQAQ","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005muJQAQ","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.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":["0068N000006Po59QAC"],"Accounts":["0018N00000JKlPSQA1"],"OrderItems":["8028N0000005muJQAQ"],"Quotes":["a0z8N000000yve3QAA"],"Opportunity":{"Id":"0068N000006Po59QAC","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0068N000006Po59QAC","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z8N000000yve3QAA","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-09-29T19:33:34.000+0000","LastViewedDate":"2023-09-29T19:33:34.000+0000","SystemModstamp":"2023-09-29T19:33:32.000+0000","IsDeleted":false,"LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:32.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:30.000+0000","TotalAmount":1440.00,"OrderNumber":"00000104","StatusCode":"Activated","ActivatedById":"0058N000004zYG5QAM","ActivatedDate":"2023-09-29T19:33:32.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-09-29","OpportunityId":"0068N000006Po59QAC","Pricebook2Id":"01s8N000002d0dzQAA","AccountId":"0018N00000JKlPSQA1","OwnerId":"0058N000004zYG5QAM","Id":"8018N0000002yURQAY","attributes":{"url":"/services/data/v58.0/sobjects/Order/8018N0000002yURQAY","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: Fri, 29 Sep 2023 19:33:36 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%278018N0000002yURQAY%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: + - Fri, 29 Sep 2023 19:33:36 GMT + Set-Cookie: + - BrowserId=FXR4-17_Ee6jbVM7DSi9LQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=476/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/8018N0000002yURQAY"},"Type":"New","OpportunityId":"0068N000006Po59QAC","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006Po59QAC"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Fri, 29 Sep 2023 19:33:36 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%278018N0000002yURQAY%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: + - Fri, 29 Sep 2023 19:33:36 GMT + Set-Cookie: + - BrowserId=FZOZv17_Ee6jbVM7DSi9LQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=477/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/8018N0000002yURQAY"},"Id":"8018N0000002yURQAY"}]}' + recorded_at: Fri, 29 Sep 2023 19:33:36 GMT +- request: + method: post + uri: https://api.stripe.com/v1/customers + body: + encoding: UTF-8 + string: name=REST+Account++2023-09-29+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0018N00000JKlPSQA1&metadata[salesforce_account_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F0018N00000JKlPSQA1 + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + Idempotency-Key: + - 7ce364a7-bb11-4eae-97b9-c36746e9f32a + 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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/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: + - Fri, 29 Sep 2023 19:33:37 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 + Idempotency-Key: + - 7ce364a7-bb11-4eae-97b9-c36746e9f32a + Original-Request: + - req_F9UGrT7NXnXhBN + Request-Id: + - req_F9UGrT7NXnXhBN + 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_OjEvkz789ARtFS", + "object": "customer", + "address": null, + "balance": 0, + "created": 1696016016, + "currency": null, + "default_currency": null, + "default_source": null, + "delinquent": false, + "description": null, + "discount": null, + "email": null, + "invoice_prefix": "232D325A", + "invoice_settings": { + "custom_fields": null, + "default_payment_method": null, + "footer": null, + "rendering_options": null + }, + "livemode": false, + "metadata": { + "salesforce_account_id": "0018N00000JKlPSQA1", + "salesforce_account_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/0018N00000JKlPSQA1" + }, + "name": "REST Account 2023-09-29 00:00:00 UTC", + "next_invoice_sequence": 1, + "phone": null, + "preferred_locales": [], + "shipping": null, + "tax_exempt": "none", + "test_clock": null + } + recorded_at: Fri, 29 Sep 2023 19:33:37 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1 + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"cus_OjEvkz789ARtFS"}' + 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: + - Fri, 29 Sep 2023 19:33:37 GMT + Set-Cookie: + - BrowserId=Fey1rF7_Ee6kBBlvTwvkWQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=478/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Fri, 29 Sep 2023 19:33:37 GMT +- request: + method: post + uri: https://api.stripe.com/v1/products + body: + encoding: UTF-8 + string: name=REST+Product2++2023-09-29+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t8N000002zJJ8QAM&metadata[salesforce_product2_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F01t8N000002zJJ8QAM + 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_F9UGrT7NXnXhBN","request_duration_ms":373}}' + Idempotency-Key: + - 0bab168c-7e7e-44d8-af83-1abf0d916f05 + 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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/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: + - Fri, 29 Sep 2023 19:33:37 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-uri /csp-report?p=%2Fv1%2Fproducts;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 + 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' + Expires: + - '0' + Idempotency-Key: + - 0bab168c-7e7e-44d8-af83-1abf0d916f05 + Original-Request: + - req_boZ1NQOBoFBYcs + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin + Request-Id: + - req_boZ1NQOBoFBYcs + 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_OjEvTrqYWrGGJc", + "object": "product", + "active": true, + "attributes": [], + "created": 1696016017, + "default_price": null, + "description": "A great description", + "features": [], + "identifiers": {}, + "images": [], + "livemode": false, + "metadata": { + "salesforce_product2_id": "01t8N000002zJJ8QAM", + "salesforce_product2_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01t8N000002zJJ8QAM" + }, + "name": "REST Product2 2023-09-29 00:00:00 UTC", + "package_dimensions": null, + "product_class": null, + "shippable": null, + "sku": "rest-product2--2023-09-29-000000-utc-3", + "statement_descriptor": null, + "tax_code": null, + "type": "service", + "unit_label": null, + "updated": 1696016017, + "url": null + } + recorded_at: Fri, 29 Sep 2023 19:33:37 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t8N000002zJJ8QAM + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"prod_OjEvTrqYWrGGJc"}' + 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: + - Fri, 29 Sep 2023 19:33:37 GMT + Set-Cookie: + - BrowserId=FkfN517_Ee6pXW3__ehaHg; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=476/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Fri, 29 Sep 2023 19:33:38 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%2701t8N000002zJJ8QAM%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: + - Fri, 29 Sep 2023 19:33:38 GMT + Set-Cookie: + - BrowserId=FnzBFF7_Ee6YVi3i9wy2Pw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=479/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: Fri, 29 Sep 2023 19:33:38 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%2701t8N000002zJJ8QAM%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: + - Fri, 29 Sep 2023 19:33:38 GMT + Set-Cookie: + - BrowserId=FpeceV7_Ee6rANtKOELnrw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=478/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: Fri, 29 Sep 2023 19:33:38 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t8N000002zJJ8QAM + 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: + - Fri, 29 Sep 2023 19:33:38 GMT + Set-Cookie: + - BrowserId=FrJ28F7_Ee6paD9uZNlBrQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=479/5000000 + Last-Modified: + - Fri, 29 Sep 2023 19:33:37 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/01t8N000002zJJ8QAM"},"Id":"01t8N000002zJJ8QAM","Name":"REST + Product2 2023-09-29 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-09-29T19:33:22.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:37.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:37.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_OjEvTrqYWrGGJc","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OjEvTrqYWrGGJc"}' + recorded_at: Fri, 29 Sep 2023 19:33:38 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%278028N0000005muJQAQ%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: + - Fri, 29 Sep 2023 19:33:38 GMT + Set-Cookie: + - BrowserId=FtmGpF7_Ee6cp4MhMPTjlA; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=479/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: Fri, 29 Sep 2023 19:33:38 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%278028N0000005muJQAQ%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: + - Fri, 29 Sep 2023 19:33:38 GMT + Set-Cookie: + - BrowserId=Fvb5tl7_Ee6cp4MhMPTjlA; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=480/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: Fri, 29 Sep 2023 19:33:38 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: + - Fri, 29 Sep 2023 19:33:39 GMT + Set-Cookie: + - BrowserId=Fxw1P17_Ee6doQESQuIQuQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=477/5000000 + Etag: + - '"5f95fb82--gzip"' + Last-Modified: + - Fri, 29 Sep 2023 18:01:14 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}","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":"__MISSING + LABEL__ PropertyFile - val AttributePicklist not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val AttributePicklist not found in section StandardFeedLabel","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":"__MISSING + LABEL__ PropertyFile - val AttributePicklistValue not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val AttributePicklistValue not found in section StandardFeedLabel","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":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 + 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":"Content + Security Policy Trusted Site","labelPlural":"Content Security Policy Trusted + Sites","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":false,"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":false,"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":"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":false,"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":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: Fri, 29 Sep 2023 19:33:39 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%2701t8N000002zJJ8QAM%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: + - Fri, 29 Sep 2023 19:33:39 GMT + Set-Cookie: + - BrowserId=F3tsrl7_Ee6B9SGa1e-7uQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=480/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: Fri, 29 Sep 2023 19:33:39 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]=licensed&recurring[interval]=month&product=prod_OjEvTrqYWrGGJc&metadata[salesforce_pricebook_entry_id]=01u8N000003ce0zQAA&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F01u8N000003ce0zQAA + 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_boZ1NQOBoFBYcs","request_duration_ms":268}}' + Idempotency-Key: + - 4f12cad3-49fd-4c8f-8d27-241935c251a9 + 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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/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: + - Fri, 29 Sep 2023 19:33:40 GMT + Content-Type: + - application/json + Content-Length: + - '817' + 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-uri /csp-report?p=%2Fv1%2Fprices;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 + 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' + Expires: + - '0' + Idempotency-Key: + - 4f12cad3-49fd-4c8f-8d27-241935c251a9 + Original-Request: + - req_CoH5tgpaqkZeUR + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin + Request-Id: + - req_CoH5tgpaqkZeUR + 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_1NvmRUIsgf92XbAOWawhQYPa", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1696016020, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u8N000003ce0zQAA", + "salesforce_pricebook_entry_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01u8N000003ce0zQAA" + }, + "nickname": null, + "product": "prod_OjEvTrqYWrGGJc", + "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": 12000, + "unit_amount_decimal": "12000" + } + recorded_at: Fri, 29 Sep 2023 19:33:40 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u8N000003ce0zQAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"price_1NvmRUIsgf92XbAOWawhQYPa"}' + 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: + - Fri, 29 Sep 2023 19:33:40 GMT + Set-Cookie: + - BrowserId=F8HqyF7_Ee63JXvdedQYag; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=480/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Fri, 29 Sep 2023 19:33:40 GMT +- request: + method: get + uri: https://api.stripe.com/v1/customers/cus_OjEvkz789ARtFS?expand%5B%5D=test_clock + 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_CoH5tgpaqkZeUR","request_duration_ms":275}}' + 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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/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: + - Fri, 29 Sep 2023 19:33:40 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 + Request-Id: + - req_gCCkc9gpYSKGbu + 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": "cus_OjEvkz789ARtFS", + "object": "customer", + "address": null, + "balance": 0, + "created": 1696016016, + "currency": null, + "default_currency": null, + "default_source": null, + "delinquent": false, + "description": null, + "discount": null, + "email": null, + "invoice_prefix": "232D325A", + "invoice_settings": { + "custom_fields": null, + "default_payment_method": null, + "footer": null, + "rendering_options": null + }, + "livemode": false, + "metadata": { + "salesforce_account_id": "0018N00000JKlPSQA1", + "salesforce_account_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/0018N00000JKlPSQA1" + }, + "name": "REST Account 2023-09-29 00:00:00 UTC", + "next_invoice_sequence": 1, + "phone": null, + "preferred_locales": [], + "shipping": null, + "tax_exempt": "none", + "test_clock": null + } + recorded_at: Fri, 29 Sep 2023 19:33:40 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1NvmRUIsgf92XbAOWawhQYPa + 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_gCCkc9gpYSKGbu","request_duration_ms":213}}' + 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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/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: + - Fri, 29 Sep 2023 19:33:40 GMT + Content-Type: + - application/json + Content-Length: + - '817' + 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-uri /csp-report?p=%2Fv1%2Fprices%2F%3Aprice;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 + 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' + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin + Request-Id: + - req_ErYwyJEptIhvOy + 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": "price_1NvmRUIsgf92XbAOWawhQYPa", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1696016020, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u8N000003ce0zQAA", + "salesforce_pricebook_entry_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01u8N000003ce0zQAA" + }, + "nickname": null, + "product": "prod_OjEvTrqYWrGGJc", + "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": 12000, + "unit_amount_decimal": "12000" + } + recorded_at: Fri, 29 Sep 2023 19:33:40 GMT +- request: + method: post + uri: https://api.stripe.com/v1/subscription_schedules + body: + encoding: UTF-8 + string: end_behavior=cancel&metadata[salesforce_order_id]=8018N0000002yURQAY&metadata[salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N0000002yURQAY&start_date=1695945600&customer=cus_OjEvkz789ARtFS&phases[0][items][0][price]=price_1NvmRUIsgf92XbAOWawhQYPa&phases[0][items][0][metadata][salesforce_order_item_id]=8028N0000005muJQAQ&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8028N0000005muJQAQ&phases[0][items][0][quantity]=1&phases[0][end_date]=1727568000&phases[0][metadata][salesforce_order_id]=8018N0000002yURQAY&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fplatform-page-3481-dev-ed.scratch.my.salesforce.com%2F8018N0000002yURQAY + 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_ErYwyJEptIhvOy","request_duration_ms":198}}' + Idempotency-Key: + - 35077256-de0f-48d4-a2e6-38307b91b003 + 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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/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: + - Fri, 29 Sep 2023 19:33:41 GMT + Content-Type: + - application/json + Content-Length: + - '2452' + 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 + Idempotency-Key: + - 35077256-de0f-48d4-a2e6-38307b91b003 + Original-Request: + - req_wj26tSIaOpY7L1 + Request-Id: + - req_wj26tSIaOpY7L1 + 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_1NvmRVIsgf92XbAOxkRzJ4CT", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1696016021, + "current_phase": { + "end_date": 1727568000, + "start_date": 1695945600 + }, + "customer": "cus_OjEvkz789ARtFS", + "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": "8018N0000002yURQAY", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N0000002yURQAY" + }, + "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": 1727568000, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005muJQAQ", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005muJQAQ" + }, + "plan": "price_1NvmRUIsgf92XbAOWawhQYPa", + "price": "price_1NvmRUIsgf92XbAOWawhQYPa", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N0000002yURQAY", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N0000002yURQAY" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1695945600, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": null, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "active", + "subscription": "sub_1NvmRVIsgf92XbAOPEIVC3Ig", + "test_clock": null + } + recorded_at: Fri, 29 Sep 2023 19:33:41 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yURQAY + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"sub_sched_1NvmRVIsgf92XbAOxkRzJ4CT"}' + 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: + - Fri, 29 Sep 2023 19:33:41 GMT + Set-Cookie: + - BrowserId=GIkygF7_Ee6avPkwqjwF2g; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=478/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Fri, 29 Sep 2023 19:33:41 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/8018N0000002yURQAY-8018N0000002yURQAY + body: + encoding: UTF-8 + string: '{"Primary_Record_ID__c":"8018N0000002yURQAY","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8018N0000002yURQAY","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync + Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1NvmRVIsgf92XbAOxkRzJ4CT","Resolution_Status__c":"Success"}' + 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: + - Fri, 29 Sep 2023 19:33:42 GMT + Set-Cookie: + - BrowserId=GM0aL17_Ee6Mpx-LZYdUxg; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=481/5000000 + Location: + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000O4XWUA0" + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '{"id":"a1W8N000000O4XWUA0","success":true,"errors":[],"created":true}' + recorded_at: Fri, 29 Sep 2023 19:33:42 GMT +- request: + method: get + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NvmRVIsgf92XbAOxkRzJ4CT?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_wj26tSIaOpY7L1","request_duration_ms":650}}' + 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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/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: + - Fri, 29 Sep 2023 19:33:42 GMT + Content-Type: + - application/json + Content-Length: + - '3527' + 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 + Request-Id: + - req_uQHpr5us65fELn + 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_1NvmRVIsgf92XbAOxkRzJ4CT", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1696016021, + "current_phase": { + "end_date": 1727568000, + "start_date": 1695945600 + }, + "customer": "cus_OjEvkz789ARtFS", + "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": "8018N0000002yURQAY", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N0000002yURQAY" + }, + "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": 1727568000, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005muJQAQ", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005muJQAQ" + }, + "plan": "price_1NvmRUIsgf92XbAOWawhQYPa", + "price": { + "id": "price_1NvmRUIsgf92XbAOWawhQYPa", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1696016020, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u8N000003ce0zQAA", + "salesforce_pricebook_entry_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01u8N000003ce0zQAA" + }, + "nickname": null, + "product": "prod_OjEvTrqYWrGGJc", + "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": 12000, + "unit_amount_decimal": "12000" + }, + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N0000002yURQAY", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N0000002yURQAY" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1695945600, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": null, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "active", + "subscription": "sub_1NvmRVIsgf92XbAOPEIVC3Ig", + "test_clock": null + } + recorded_at: Fri, 29 Sep 2023 19:33:42 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yURQAY + body: + encoding: UTF-8 + string: '{"SBQQ__Contracted__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: + - Fri, 29 Sep 2023 19:33:42 GMT + Set-Cookie: + - BrowserId=GRIRdF7_Ee6B9SGa1e-7uQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=482/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Fri, 29 Sep 2023 19:33:44 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Contract%20WHERE%20SBQQ__Order__c%20=%20%278018N0000002yURQAY%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: + - Fri, 29 Sep 2023 19:33:44 GMT + Set-Cookie: + - BrowserId=GiThHl7_Ee6B9SGa1e-7uQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=483/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":"Contract","url":"/services/data/v58.0/sobjects/Contract/8008N000000gHheQAE"},"Id":"8008N000000gHheQAE"}]}' + recorded_at: Fri, 29 Sep 2023 19:33:44 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contract/8008N000000gHheQAE + 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: + - Fri, 29 Sep 2023 19:33:44 GMT + Set-Cookie: + - BrowserId=GkLJ_V7_Ee6_t9fOSQF8gw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=478/5000000 + Last-Modified: + - Fri, 29 Sep 2023 19:33:44 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8008N000000gHheQAE"},"Id":"8008N000000gHheQAE","AccountId":"0018N00000JKlPSQA1","Pricebook2Id":null,"OwnerExpirationNotice":null,"StartDate":"2023-09-29","EndDate":"2024-09-28","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ContractTerm":12,"OwnerId":"0058N000004zYG5QAM","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":"00000101","LastApprovedDate":null,"CreatedDate":"2023-09-29T19:33:43.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:44.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:44.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":"2024-09-28","SBQQ__MDQRenewalBehavior__c":null,"SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0068N000006Po59QAC","SBQQ__Order__c":"8018N0000002yURQAY","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z8N000000yve3QAA","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":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0.0,"SBQQ__OpportunityPricebookId__c":null}' + recorded_at: Fri, 29 Sep 2023 19:33:44 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yURQAY + 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: + - Fri, 29 Sep 2023 19:33:44 GMT + Set-Cookie: + - BrowserId=GnmRq17_Ee6YVi3i9wy2Pw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=481/5000000 + Last-Modified: + - Fri, 29 Sep 2023 19:33:42 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/8018N0000002yURQAY"},"Id":"8018N0000002yURQAY","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKlPSQA1","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006Po59QAC","EffectiveDate":"2023-09-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-09-29T19:33:32.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000104","TotalAmount":1440.0,"CreatedDate":"2023-09-29T19:33:30.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:42.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T19:33:42.000+0000","LastViewedDate":"2023-09-29T19:33:42.000+0000","LastReferencedDate":"2023-09-29T19:33:42.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":"a0z8N000000yve3QAA","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1NvmRVIsgf92XbAOxkRzJ4CT","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NvmRVIsgf92XbAOxkRzJ4CT"}' + recorded_at: Fri, 29 Sep 2023 19:33:44 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ContractManipulationAPI.ContractAmender&uid=8008N000000gHheQAE + body: + encoding: UTF-8 + string: "{}" + 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: + - Fri, 29 Sep 2023 19:33:45 GMT + Set-Cookie: + - BrowserId=Gp1GIV7_Ee6paD9uZNlBrQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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 + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yve8QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve8QAA\"},\"Id\":\"a0z8N000000yve8QAA\",\"Name\":\"Q-00005\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0018N00000JKlPSQA1\",\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2023-09-29\",\"SBQQ__EndDate__c\":\"2024-09-28\",\"SBQQ__MasterContract__c\":\"8008N000000gHheQAE\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12,\"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\":\"0068N000006Po5EQAS\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1\"},\"Id\":\"0018N00000JKlPSQA1\",\"Name\":\"REST + Account 2023-09-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/8008N000000gHheQAE\"},\"Id\":\"8008N000000gHheQAE\",\"ContractNumber\":\"00000101\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0068N000006Po5EQAS\"},\"Id\":\"0068N000006Po5EQAS\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yve8QAA\",\"AccountId\":\"0018N00000JKlPSQA1\"},\"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\":\"a0z8N000000yve8QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpOCQA0\"},\"Id\":\"a0v8N000002SpOCQA0\",\"SBQQ__Quote__c\":\"a0z8N000000yve8QAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zJJ8QAM\",\"SBQQ__Number__c\":1,\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000014\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.00,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":1440.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\":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__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-09-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\":1440.00,\"SBQQ__UpgradedSubscription__c\":\"a1B8N0000015OU6UAM\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zJJ8QAM\"},\"Id\":\"01t8N000002zJJ8QAM\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B8N0000015OU6UAM\"},\"Id\":\"a1B8N0000015OU6UAM\",\"SBQQ__QuoteLine__c\":\"a0v8N000002SpO6QAK\",\"SBQQ__OriginalQuoteLine__c\":\"a0v8N000002SpO6QAK\",\"SBQQ__Contract__c\":\"8008N000000gHheQAE\"},\"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__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-09-29\",\"effectiveEndDate\":\"2024-09-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Fri, 29 Sep 2023 19:33:47 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\":\"a0z8N000000yve8QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve8QAA\"},\"Id\":\"a0z8N000000yve8QAA\",\"Name\":\"Q-00005\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0018N00000JKlPSQA1\",\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2024-06-29\",\"SBQQ__EndDate__c\":\"2024-09-28\",\"SBQQ__MasterContract__c\":\"8008N000000gHheQAE\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12,\"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\":\"0068N000006Po5EQAS\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1\"},\"Id\":\"0018N00000JKlPSQA1\",\"Name\":\"REST + Account 2023-09-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/8008N000000gHheQAE\"},\"Id\":\"8008N000000gHheQAE\",\"ContractNumber\":\"00000101\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0068N000006Po5EQAS\"},\"Id\":\"0068N000006Po5EQAS\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yve8QAA\",\"AccountId\":\"0018N00000JKlPSQA1\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":3,\"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\":\"a0z8N000000yve8QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpOCQA0\"},\"Id\":\"a0v8N000002SpOCQA0\",\"SBQQ__Quote__c\":\"a0z8N000000yve8QAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zJJ8QAM\",\"SBQQ__Number__c\":1,\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000014\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":1440.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\":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\":0,\"SBQQ__SpecialPrice__c\":120.0,\"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-09-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\":1440.0,\"SBQQ__UpgradedSubscription__c\":\"a1B8N0000015OU6UAM\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zJJ8QAM\"},\"Id\":\"01t8N000002zJJ8QAM\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B8N0000015OU6UAM\"},\"Id\":\"a1B8N0000015OU6UAM\",\"SBQQ__QuoteLine__c\":\"a0v8N000002SpO6QAK\",\"SBQQ__OriginalQuoteLine__c\":\"a0v8N000002SpO6QAK\",\"SBQQ__Contract__c\":\"8008N000000gHheQAE\"},\"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__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-09-29\",\"effectiveEndDate\":\"2024-09-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 + 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: + - Fri, 29 Sep 2023 19:33:48 GMT + Set-Cookie: + - BrowserId=HFkm817_Ee6iGtOYdb4BdQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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 + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yve8QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve8QAA\"},\"Id\":\"a0z8N000000yve8QAA\",\"Name\":\"Q-00005\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0018N00000JKlPSQA1\",\"SBQQ__SubscriptionTerm__c\":3,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2024-06-29\",\"SBQQ__EndDate__c\":\"2024-09-28\",\"SBQQ__MasterContract__c\":\"8008N000000gHheQAE\",\"SBQQ__NetAmount__c\":-1440.00,\"SBQQ__CustomerAmount__c\":-1440.00,\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12,\"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\":\"0068N000006Po5EQAS\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1\"},\"Id\":\"0018N00000JKlPSQA1\",\"Name\":\"REST + Account 2023-09-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/8008N000000gHheQAE\"},\"Id\":\"8008N000000gHheQAE\",\"ContractNumber\":\"00000101\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0068N000006Po5EQAS\"},\"Id\":\"0068N000006Po5EQAS\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yve8QAA\",\"AccountId\":\"0018N00000JKlPSQA1\"},\"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\":-360.00,\"netNonSegmentTotal\":-360.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yve8QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpOCQA0\"},\"Id\":\"a0v8N000002SpOCQA0\",\"SBQQ__Quote__c\":\"a0z8N000000yve8QAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zJJ8QAM\",\"SBQQ__Number__c\":1,\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000015\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":360.00,\"SBQQ__EffectiveSubscriptionTerm__c\":3,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":360.00,\"SBQQ__NetTotal__c\":-360.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":360.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":360.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":3.0000,\"SBQQ__Quantity__c\":0.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":360.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-09-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\":360.00,\"SBQQ__UpgradedSubscription__c\":\"a1B8N0000015OU6UAM\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zJJ8QAM\"},\"Id\":\"01t8N000002zJJ8QAM\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B8N0000015OU6UAM\"},\"Id\":\"a1B8N0000015OU6UAM\",\"SBQQ__QuoteLine__c\":\"a0v8N000002SpO6QAK\",\"SBQQ__OriginalQuoteLine__c\":\"a0v8N000002SpO6QAK\",\"SBQQ__Contract__c\":\"8008N000000gHheQAE\"},\"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__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\":\"2024-06-29\",\"effectiveEndDate\":\"2024-09-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":-360.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Fri, 29 Sep 2023 19:33:49 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\":\"a0z8N000000yve8QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve8QAA\"},\"Id\":\"a0z8N000000yve8QAA\",\"Name\":\"Q-00005\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0018N00000JKlPSQA1\",\"SBQQ__SubscriptionTerm__c\":3,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"SBQQ__StartDate__c\":\"2024-06-29\",\"SBQQ__EndDate__c\":\"2024-09-28\",\"SBQQ__MasterContract__c\":\"8008N000000gHheQAE\",\"SBQQ__NetAmount__c\":-1440.0,\"SBQQ__CustomerAmount__c\":-1440.0,\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12,\"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\":\"0068N000006Po5EQAS\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1\"},\"Id\":\"0018N00000JKlPSQA1\",\"Name\":\"REST + Account 2023-09-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/8008N000000gHheQAE\"},\"Id\":\"8008N000000gHheQAE\",\"ContractNumber\":\"00000101\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0068N000006Po5EQAS\"},\"Id\":\"0068N000006Po5EQAS\",\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yve8QAA\",\"AccountId\":\"0018N00000JKlPSQA1\"},\"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\":-360.0,\"netNonSegmentTotal\":-360.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yve8QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpOCQA0\"},\"Id\":\"a0v8N000002SpOCQA0\",\"SBQQ__Quote__c\":\"a0z8N000000yve8QAA\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t8N000002zJJ8QAM\",\"SBQQ__Number__c\":1,\"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__BillingFrequency__c\":\"Monthly\",\"Name\":\"QL-0000015\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":360.0,\"SBQQ__EffectiveSubscriptionTerm__c\":3,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":360.0,\"SBQQ__NetTotal__c\":-360.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":360.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":360.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":3.0,\"SBQQ__Quantity__c\":0.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":360.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-09-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\":360.0,\"SBQQ__UpgradedSubscription__c\":\"a1B8N0000015OU6UAM\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t8N000002zJJ8QAM\"},\"Id\":\"01t8N000002zJJ8QAM\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-09-29 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B8N0000015OU6UAM\"},\"Id\":\"a1B8N0000015OU6UAM\",\"SBQQ__QuoteLine__c\":\"a0v8N000002SpO6QAK\",\"SBQQ__OriginalQuoteLine__c\":\"a0v8N000002SpO6QAK\",\"SBQQ__Contract__c\":\"8008N000000gHheQAE\"},\"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__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\":\"2024-06-29\",\"effectiveEndDate\":\"2024-09-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":-360.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: + - Fri, 29 Sep 2023 19:33:49 GMT + Set-Cookie: + - BrowserId=HVhHiF7_Ee6kBBlvTwvkWQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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 + 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\":\"a0z8N000000yve8QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve8QAA\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":-1440.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":-1440.0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0068N000006Po5EQAS\"},\"SBQQ__PrimaryQuote__c\":\"a0z8N000000yve8QAA\",\"AccountId\":\"0018N00000JKlPSQA1\",\"Id\":\"0068N000006Po5EQAS\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0018N00000JKlPSQA1\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-09-29 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00005\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__SubscriptionTerm__c\":3.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__EndDate__c\":\"2024-09-28\",\"SBQQ__PricebookId__c\":null,\"SBQQ__Account__c\":\"0018N00000JKlPSQA1\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2024-06-29\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-10-29\",\"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/8008N000000gHheQAE\"},\"ContractNumber\":\"00000101\",\"Id\":\"8008N000000gHheQAE\"},\"SBQQ__Opportunity2__c\":\"0068N000006Po5EQAS\",\"SBQQ__MasterContract__c\":\"8008N000000gHheQAE\",\"SBQQ__LineItemCount__c\":1.0,\"Id\":\"a0z8N000000yve8QAA\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12.0},\"nextKey\":2,\"netTotal\":-360.0,\"netNonSegmentTotal\":-360.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z8N000000yve8QAA\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpOCQA0\"},\"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-09-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\":\"a0z8N000000yve8QAA\",\"SBQQ__ProratedListPrice__c\":360.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":360.0,\"Id\":\"a0v8N000002SpOCQA0\",\"SBQQ__EffectiveSubscriptionTerm__c\":3.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":360.0,\"SBQQ__Quantity__c\":0.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/a1B8N0000015OU6UAM\"},\"SBQQ__OriginalQuoteLine__c\":\"a0v8N000002SpO6QAK\",\"SBQQ__Contract__c\":\"8008N000000gHheQAE\",\"SBQQ__QuoteLine__c\":\"a0v8N000002SpO6QAK\",\"Id\":\"a1B8N0000015OU6UAM\"},\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":\"a1B8N0000015OU6UAM\",\"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\":-360.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\":3.0,\"Name\":\"QL-0000015\",\"SBQQ__CustomerPrice__c\":360.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\":360.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\":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\":360.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/01t8N000002zJJ8QAM\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t8N000002zJJ8QAM\",\"Name\":\"REST + Product2 2023-09-29 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t8N000002zJJ8QAM\",\"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\":\"2024-06-29\",\"effectiveEndDate\":\"2024-09-28\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":-360.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Fri, 29 Sep 2023 19:33:50 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: + - Fri, 29 Sep 2023 19:33:50 GMT + Set-Cookie: + - BrowserId=HcYkDl7_Ee6w_gFWpTIg2Q; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=487/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: Fri, 29 Sep 2023 19:33:50 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve8QAA + body: + encoding: UTF-8 + string: '{"SBQQ__PricebookId__c":"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: 204 + message: No Content + headers: + Date: + - Fri, 29 Sep 2023 19:33:50 GMT + Set-Cookie: + - BrowserId=HeCJkV7_Ee6WqO1PqYZEZA; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:50 + 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: + - 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=483/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Fri, 29 Sep 2023 19:33:51 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve8QAA + 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: + - Fri, 29 Sep 2023 19:33:52 GMT + Set-Cookie: + - BrowserId=HtI9Vl7_Ee6cp4MhMPTjlA; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=486/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Fri, 29 Sep 2023 19:33:53 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z8N000000yve8QAA/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: + - Fri, 29 Sep 2023 19:33:53 GMT + Set-Cookie: + - BrowserId=H8vfpV7_Ee6pXW3__ehaHg; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=488/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/8018N0000002yUWQAY"},"Id":"8018N0000002yUWQAY","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKlPSQA1","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006Po5EQAS","EffectiveDate":"2024-06-29","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":"00000105","TotalAmount":-360.0,"CreatedDate":"2023-09-29T19:33:52.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:53.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T19:33:53.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":"a0z8N000000yve8QAA","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":-360.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: Fri, 29 Sep 2023 19:33:53 GMT +- request: + method: patch + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yUWQAY + 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: + - Fri, 29 Sep 2023 19:33:54 GMT + Set-Cookie: + - BrowserId=H-t0sl7_Ee6nfRHpcPFuBQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:54 + 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: Fri, 29 Sep 2023 19:33:54 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yUWQAY + 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: + - Fri, 29 Sep 2023 19:33:54 GMT + Set-Cookie: + - BrowserId=IFhAtF7_Ee6YVi3i9wy2Pw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=493/5000000 + Last-Modified: + - Fri, 29 Sep 2023 19:33:54 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/8018N0000002yUWQAY"},"Id":"8018N0000002yUWQAY","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKlPSQA1","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006Po5EQAS","EffectiveDate":"2024-06-29","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-09-29T19:33:54.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000105","TotalAmount":-360.0,"CreatedDate":"2023-09-29T19:33:52.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:54.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T19:33:54.000+0000","LastViewedDate":"2023-09-29T19:33:54.000+0000","LastReferencedDate":"2023-09-29T19:33:54.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":"a0z8N000000yve8QAA","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":-360.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: Fri, 29 Sep 2023 19:33:54 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yUWQAY + 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: + - Fri, 29 Sep 2023 19:33:54 GMT + Set-Cookie: + - BrowserId=IHxDFF7_Ee6nfRHpcPFuBQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=492/5000000 + Last-Modified: + - Fri, 29 Sep 2023 19:33:54 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/8018N0000002yUWQAY"},"Id":"8018N0000002yUWQAY","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKlPSQA1","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006Po5EQAS","EffectiveDate":"2024-06-29","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-09-29T19:33:54.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000105","TotalAmount":-360.0,"CreatedDate":"2023-09-29T19:33:52.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:54.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T19:33:54.000+0000","LastViewedDate":"2023-09-29T19:33:54.000+0000","LastReferencedDate":"2023-09-29T19:33:54.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":"a0z8N000000yve8QAA","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":-360.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: Fri, 29 Sep 2023 19:33:54 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":["8018N0000002yUWQAY"]}' + 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: + - Fri, 29 Sep 2023 19:33:55 GMT + Set-Cookie: + - BrowserId=IJaCBl7_Ee6_t9fOSQF8gw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:55 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:55 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:55 + 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":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006Po5EQAS"},"Id":"0068N000006Po5EQAS","IsDeleted":false,"AccountId":"0018N00000JKlPSQA1","IsPrivate":false,"Name":"Amendment + for contract #00000101","StageName":"Prospecting","Probability":10,"CloseDate":"2023-09-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:45.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:46.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:46.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-09-29T19:33:45.000+0000","LastReferencedDate":"2023-09-29T19:33:45.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8008N000000gHheQAE","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z8N000000yve8QAA","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1"},"Id":"0018N00000JKlPSQA1","IsDeleted":false,"Name":"REST + Account 2023-09-29 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0018N00000JKlPSQA1","OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:23.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:37.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:37.000+0000","LastViewedDate":"2023-09-29T19:33:37.000+0000","LastReferencedDate":"2023-09-29T19:33: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_OjEvkz789ARtFS","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_OjEvkz789ARtFS"},{"Accounts":["0018N00000JKlPSQA1"],"Opportunities":["0068N000006Po5EQAS"],"SBQQ__RegularAmount__c":-360.00,"SBQQ__NetAmount__c":-360.00,"SBQQ__ListAmount__c":-360.00,"SBQQ__CustomerAmount__c":-360.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-10-29","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":3,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2024-06-29","SBQQ__ShippingName__c":"REST + Account 2023-09-29 00:00:00 UTC","SBQQ__SalesRep__c":"0058N000004zYG5QAM","SBQQ__RenewalTerm__c":12,"SBQQ__Primary__c":true,"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":"0068N000006Po5EQAS","SBQQ__MasterContract__c":"8008N000000gHheQAE","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-09-29T19:33:52.000+0000","SBQQ__LastCalculatedOn__c":"2023-09-29T19:33:47.000+0000","SBQQ__EndDate__c":"2024-09-28","SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST + Account 2023-09-29 00:00:00 UTC","SBQQ__Account__c":"0018N00000JKlPSQA1","LastReferencedDate":"2023-09-29T19:33:52.000+0000","LastViewedDate":"2023-09-29T19:33:52.000+0000","SystemModstamp":"2023-09-29T19:33:52.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:52.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:46.000+0000","Name":"Q-00005","IsDeleted":false,"OwnerId":"0058N000004zYG5QAM","Id":"a0z8N000000yve8QAA","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve8QAA","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t8N000002zJJ8QAM"},"Id":"01t8N000002zJJ8QAM","Name":"REST + Product2 2023-09-29 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-09-29T19:33:22.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:37.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:40.000+0000","IsDeleted":false,"IsArchived":false,"LastViewedDate":"2023-09-29T19:33:38.000+0000","LastReferencedDate":"2023-09-29T19:33:38.000+0000","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_ID__c":"prod_OjEvTrqYWrGGJc","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OjEvTrqYWrGGJc"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01u8N000003ce0zQAA"},"Id":"01u8N000003ce0zQAA","Name":"REST + Product2 2023-09-29 00:00:00 UTC","Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000002zJJ8QAM","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-09-29T19:33:23.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:40.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:40.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_ID__c":"price_1NvmRUIsgf92XbAOWawhQYPa","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1NvmRUIsgf92XbAOWawhQYPa"},{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8008N000000gHheQAE"},"Id":"8008N000000gHheQAE","AccountId":"0018N00000JKlPSQA1","StartDate":"2023-09-29","EndDate":"2024-09-28","BillingAddress":null,"ContractTerm":12,"OwnerId":"0058N000004zYG5QAM","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000101","CreatedDate":"2023-09-29T19:33:43.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:44.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:44.000+0000","LastViewedDate":"2023-09-29T19:33:44.000+0000","LastReferencedDate":"2023-09-29T19:33:44.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":"2024-09-28","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0068N000006Po59QAC","SBQQ__Order__c":"8018N0000002yURQAY","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z8N000000yve3QAA","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":12,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpOCQA0"},"Id":"a0v8N000002SpOCQA0","IsDeleted":false,"Name":"QL-0000015","CreatedDate":"2023-09-29T19:33:47.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:51.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:51.000+0000","SBQQ__Quote__c":"a0z8N000000yve8QAA","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":360.00,"SBQQ__DefaultSubscriptionTerm__c":1,"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":360.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":360.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003ce0zQAA","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000002zJJ8QAM","SBQQ__ProrateMultiplier__c":3.0000,"SBQQ__ProratedListPrice__c":360.00,"SBQQ__ProratedPrice__c":360.00,"SBQQ__Quantity__c":0.00,"SBQQ__RegularPrice__c":360.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__UpgradedSubscription__c":"a1B8N0000015OU6UAM","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":-360.00,"SBQQ__EffectiveEndDate__c":"2024-09-28","SBQQ__EffectiveQuantity__c":-1.00,"SBQQ__EffectiveStartDate__c":"2024-06-29","SBQQ__EffectiveSubscriptionTerm__c":3,"SBQQ__ListTotal__c":-360.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":-360.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":-360.00,"SBQQ__PackageTotal__c":-360.00,"SBQQ__PartnerTotal__c":-360.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-09-29 00:00:00 UTC","SBQQ__RegularTotal__c":-360.00,"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/a0v8N000002SpO6QAK"},"Id":"a0v8N000002SpO6QAK","IsDeleted":false,"Name":"QL-0000013","CreatedDate":"2023-09-29T19:33:30.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:30.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:30.000+0000","SBQQ__Quote__c":"a0z8N000000yve3QAA","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__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":"01u8N000003ce0zQAA","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000002zJJ8QAM","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__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":1440.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-09-29","SBQQ__EffectiveSubscriptionTerm__c":12,"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-09-29 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__Subscription__c","url":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B8N0000015OU6UAM"},"Id":"a1B8N0000015OU6UAM","OwnerId":"0058N000004zYG5QAM","IsDeleted":false,"Name":"SUB-0000001","CreatedDate":"2023-09-29T19:33:43.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:43.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:43.000+0000","SBQQ__Account__c":"0018N00000JKlPSQA1","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8008N000000gHheQAE","SBQQ__CustomerPrice__c":1440.00,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__ListPrice__c":1440.00,"SBQQ__NetPrice__c":1440.00,"SBQQ__Number__c":1,"SBQQ__OrderProduct__c":"8028N0000005muJQAQ","SBQQ__OriginalQuoteLine__c":"a0v8N000002SpO6QAK","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000002zJJ8QAM","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v8N000002SpO6QAK","SBQQ__RegularPrice__c":1440.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B8N0000015OU6UAM","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionStartDate__c":"2023-09-29","SBQQ__ContractNumber__c":"00000101","SBQQ__EndDate__c":"2024-09-28","SBQQ__ProductId__c":"01t8N000002zJJ8","SBQQ__ProductName__c":"REST + Product2 2023-09-29 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t8N000002zJJ8","SBQQ__StartDate__c":"2023-09-29","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t8N000002zJJ8QAM"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":-360.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8028N0000005muJQAQ","SBQQ__QuotedQuantity__c":-1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002SpOCQA0","SBQQ__ProrateMultiplier__c":3.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":"Cancel","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000006","SystemModstamp":"2023-09-29T19:33:54.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:54.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:53.000+0000","EndDate":"2024-09-28","ServiceDate":"2024-06-29","TotalPrice":-360.00,"ListPrice":120.00,"UnitPrice":360.00,"Quantity":-1.00,"AvailableQuantity":-1.00,"PricebookEntryId":"01u8N000003ce0zQAA","OrderId":"8018N0000002yUWQAY","IsDeleted":false,"Product2Id":"01t8N000002zJJ8QAM","Id":"8028N0000005muOQAQ","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005muOQAQ","type":"OrderItem"}},{"Contracts":["8008N000000gHheQAE"],"PricebookEntries":[],"Products":["01t8N000002zJJ8QAM"],"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__Subscription__c":"a1B8N0000015OU6UAM","SBQQ__SubscriptionTerm__c":12,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8028N0000005muEQAQ","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002SpO6QAK","SBQQ__ProrateMultiplier__c":12.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":true,"SBQQ__Contract__c":"8008N000000gHheQAE","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000005","SystemModstamp":"2023-09-29T19:33:44.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:44.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:30.000+0000","EndDate":"2024-09-28","ServiceDate":"2023-09-29","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003ce0zQAA","OrderId":"8018N0000002yURQAY","IsDeleted":false,"Product2Id":"01t8N000002zJJ8QAM","Id":"8028N0000005muJQAQ","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005muJQAQ","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006Po59QAC"},"Id":"0068N000006Po59QAC","IsDeleted":false,"AccountId":"0018N00000JKlPSQA1","IsPrivate":false,"Name":"REST + Opportunity 2023-09-29 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-09-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:24.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:25.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:25.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-09-29T19:33:24.000+0000","LastReferencedDate":"2023-09-29T19:33:24.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z8N000000yve3QAA","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.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":["0068N000006Po5EQAS"],"Accounts":["0018N00000JKlPSQA1"],"OrderItems":["8028N0000005muOQAQ"],"Quotes":["a0z8N000000yve8QAA"],"InitialOrderQuotes":["a0z8N000000yve3QAA"],"InitialOrderId":["8018N0000002yURQAY"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z8N000000yve3QAA","Id":"8008N000000gHheQAE","attributes":{"url":"/services/data/v58.0/sobjects/Contract/8008N000000gHheQAE","type":"Contract"}},"SBQQ__AmendedContract__c":"8008N000000gHheQAE","Id":"0068N000006Po5EQAS","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0068N000006Po5EQAS","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":-360.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":12,"SBQQ__Quote__c":"a0z8N000000yve8QAA","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-09-29T19:33:55.000+0000","LastViewedDate":"2023-09-29T19:33:55.000+0000","SystemModstamp":"2023-09-29T19:33:54.000+0000","IsDeleted":false,"LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:54.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:52.000+0000","TotalAmount":-360.00,"OrderNumber":"00000105","StatusCode":"Activated","ActivatedById":"0058N000004zYG5QAM","ActivatedDate":"2023-09-29T19:33:54.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2024-06-29","OpportunityId":"0068N000006Po5EQAS","Pricebook2Id":"01s8N000002d0dzQAA","AccountId":"0018N00000JKlPSQA1","OwnerId":"0058N000004zYG5QAM","Id":"8018N0000002yUWQAY","attributes":{"url":"/services/data/v58.0/sobjects/Order/8018N0000002yUWQAY","type":"Order"}},{"PriceBooks":["01s8N000002d0dzQAA"],"Opportunities":["0068N000006Po59QAC"],"Accounts":["0018N00000JKlPSQA1"],"OrderItems":["8028N0000005muJQAQ"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NvmRVIsgf92XbAOxkRzJ4CT","Stripe_ID__c":"sub_sched_1NvmRVIsgf92XbAOxkRzJ4CT","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z8N000000yve3QAA","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-09-29T19:33:44.000+0000","LastViewedDate":"2023-09-29T19:33:44.000+0000","SystemModstamp":"2023-09-29T19:33:42.000+0000","IsDeleted":false,"LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:42.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:30.000+0000","TotalAmount":1440.00,"OrderNumber":"00000104","StatusCode":"Activated","ActivatedById":"0058N000004zYG5QAM","ActivatedDate":"2023-09-29T19:33:32.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-09-29","OpportunityId":"0068N000006Po59QAC","Pricebook2Id":"01s8N000002d0dzQAA","AccountId":"0018N00000JKlPSQA1","OwnerId":"0058N000004zYG5QAM","Id":"8018N0000002yURQAY","attributes":{"url":"/services/data/v58.0/sobjects/Order/8018N0000002yURQAY","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: Fri, 29 Sep 2023 19:33:56 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%278018N0000002yUWQAY%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: + - Fri, 29 Sep 2023 19:33:56 GMT + Set-Cookie: + - BrowserId=IWLSnF7_Ee6kBBlvTwvkWQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=492/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/8018N0000002yUWQAY"},"Type":"Amendment","OpportunityId":"0068N000006Po5EQAS","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006Po5EQAS"},"SBQQ__AmendedContract__c":"8008N000000gHheQAE"}}]}' + recorded_at: Fri, 29 Sep 2023 19:33:56 GMT +- request: + method: get + uri: https://platform-page-3481-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%278018N0000002yUWQAY%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: + - Fri, 29 Sep 2023 19:33:56 GMT + Set-Cookie: + - BrowserId=IX6YoV7_Ee6B9SGa1e-7uQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=495/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/8018N0000002yUWQAY"},"OpportunityId":"0068N000006Po5EQAS","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006Po5EQAS"},"SBQQ__AmendedContract__c":"8008N000000gHheQAE","SBQQ__AmendedContract__r":{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8008N000000gHheQAE"},"SBQQ__Quote__c":"a0z8N000000yve3QAA"}}}]}' + recorded_at: Fri, 29 Sep 2023 19:33:56 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20Order%0AWHERE%20SBQQ__Quote__c%20=%20%27a0z8N000000yve3QAA%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: + - Fri, 29 Sep 2023 19:33:56 GMT + Set-Cookie: + - BrowserId=IZ4ufF7_Ee6w_gFWpTIg2Q; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=488/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/8018N0000002yURQAY"},"Id":"8018N0000002yURQAY"}]}' + recorded_at: Fri, 29 Sep 2023 19:33:56 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20FIELDS(ALL)%20FROM%20Order%0AWHERE%20Opportunity.SBQQ__AmendedContract__c%20=%20%278008N000000gHheQAE%27%0AORDER%20BY%20SBQQ__Quote__r.SBQQ__StartDate__c,%20LastModifiedDate%20ASC%20LIMIT%20200%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: + - Fri, 29 Sep 2023 19:33:57 GMT + Set-Cookie: + - BrowserId=IbkI9F7_Ee6cp4MhMPTjlA; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:57 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:57 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=494/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/8018N0000002yUWQAY"},"Id":"8018N0000002yUWQAY","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKlPSQA1","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006Po5EQAS","EffectiveDate":"2024-06-29","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-09-29T19:33:54.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000105","TotalAmount":-360.0,"CreatedDate":"2023-09-29T19:33:52.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:54.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T19:33:54.000+0000","LastViewedDate":"2023-09-29T19:33:55.000+0000","LastReferencedDate":"2023-09-29T19:33: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":"a0z8N000000yve8QAA","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":-360.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: Fri, 29 Sep 2023 19:33:57 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":["8018N0000002yUWQAY"]}' + 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: + - Fri, 29 Sep 2023 19:33:57 GMT + Set-Cookie: + - BrowserId=IdZVil7_Ee6Mpx-LZYdUxg; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:57 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:57 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006Po5EQAS"},"Id":"0068N000006Po5EQAS","IsDeleted":false,"AccountId":"0018N00000JKlPSQA1","IsPrivate":false,"Name":"Amendment + for contract #00000101","StageName":"Prospecting","Probability":10,"CloseDate":"2023-09-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:45.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:46.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:46.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-09-29T19:33:45.000+0000","LastReferencedDate":"2023-09-29T19:33:45.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8008N000000gHheQAE","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z8N000000yve8QAA","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0018N00000JKlPSQA1"},"Id":"0018N00000JKlPSQA1","IsDeleted":false,"Name":"REST + Account 2023-09-29 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0018N00000JKlPSQA1","OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:23.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:37.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:37.000+0000","LastViewedDate":"2023-09-29T19:33:37.000+0000","LastReferencedDate":"2023-09-29T19:33: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_OjEvkz789ARtFS","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_OjEvkz789ARtFS"},{"Accounts":["0018N00000JKlPSQA1"],"Opportunities":["0068N000006Po5EQAS"],"SBQQ__RegularAmount__c":-360.00,"SBQQ__NetAmount__c":-360.00,"SBQQ__ListAmount__c":-360.00,"SBQQ__CustomerAmount__c":-360.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-10-29","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":3,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2024-06-29","SBQQ__ShippingName__c":"REST + Account 2023-09-29 00:00:00 UTC","SBQQ__SalesRep__c":"0058N000004zYG5QAM","SBQQ__RenewalTerm__c":12,"SBQQ__Primary__c":true,"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":"0068N000006Po5EQAS","SBQQ__MasterContract__c":"8008N000000gHheQAE","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-09-29T19:33:52.000+0000","SBQQ__LastCalculatedOn__c":"2023-09-29T19:33:47.000+0000","SBQQ__EndDate__c":"2024-09-28","SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST + Account 2023-09-29 00:00:00 UTC","SBQQ__Account__c":"0018N00000JKlPSQA1","LastReferencedDate":"2023-09-29T19:33:52.000+0000","LastViewedDate":"2023-09-29T19:33:52.000+0000","SystemModstamp":"2023-09-29T19:33:52.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:52.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:46.000+0000","Name":"Q-00005","IsDeleted":false,"OwnerId":"0058N000004zYG5QAM","Id":"a0z8N000000yve8QAA","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve8QAA","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t8N000002zJJ8QAM"},"Id":"01t8N000002zJJ8QAM","Name":"REST + Product2 2023-09-29 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-09-29T19:33:22.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:37.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:40.000+0000","IsDeleted":false,"IsArchived":false,"LastViewedDate":"2023-09-29T19:33:38.000+0000","LastReferencedDate":"2023-09-29T19:33:38.000+0000","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_ID__c":"prod_OjEvTrqYWrGGJc","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OjEvTrqYWrGGJc"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01u8N000003ce0zQAA"},"Id":"01u8N000003ce0zQAA","Name":"REST + Product2 2023-09-29 00:00:00 UTC","Pricebook2Id":"01s8N000002d0dzQAA","Product2Id":"01t8N000002zJJ8QAM","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-09-29T19:33:23.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:40.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:40.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_ID__c":"price_1NvmRUIsgf92XbAOWawhQYPa","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1NvmRUIsgf92XbAOWawhQYPa"},{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8008N000000gHheQAE"},"Id":"8008N000000gHheQAE","AccountId":"0018N00000JKlPSQA1","StartDate":"2023-09-29","EndDate":"2024-09-28","BillingAddress":null,"ContractTerm":12,"OwnerId":"0058N000004zYG5QAM","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000101","CreatedDate":"2023-09-29T19:33:43.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:44.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:44.000+0000","LastViewedDate":"2023-09-29T19:33:44.000+0000","LastReferencedDate":"2023-09-29T19:33:44.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":"2024-09-28","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0068N000006Po59QAC","SBQQ__Order__c":"8018N0000002yURQAY","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z8N000000yve3QAA","SBQQ__RenewalForecast__c":false,"SBQQ__RenewalQuoted__c":false,"SBQQ__RenewalTerm__c":12,"SBQQ__SubscriptionQuantitiesCombined__c":false,"SBQQ__ActiveContract__c":0},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v8N000002SpOCQA0"},"Id":"a0v8N000002SpOCQA0","IsDeleted":false,"Name":"QL-0000015","CreatedDate":"2023-09-29T19:33:47.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:51.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:51.000+0000","SBQQ__Quote__c":"a0z8N000000yve8QAA","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":360.00,"SBQQ__DefaultSubscriptionTerm__c":1,"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":360.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":360.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u8N000003ce0zQAA","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000002zJJ8QAM","SBQQ__ProrateMultiplier__c":3.0000,"SBQQ__ProratedListPrice__c":360.00,"SBQQ__ProratedPrice__c":360.00,"SBQQ__Quantity__c":0.00,"SBQQ__RegularPrice__c":360.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__UpgradedSubscription__c":"a1B8N0000015OU6UAM","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":-360.00,"SBQQ__EffectiveEndDate__c":"2024-09-28","SBQQ__EffectiveQuantity__c":-1.00,"SBQQ__EffectiveStartDate__c":"2024-06-29","SBQQ__EffectiveSubscriptionTerm__c":3,"SBQQ__ListTotal__c":-360.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":-360.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":-360.00,"SBQQ__PackageTotal__c":-360.00,"SBQQ__PartnerTotal__c":-360.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-09-29 00:00:00 UTC","SBQQ__RegularTotal__c":-360.00,"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/a0v8N000002SpO6QAK"},"Id":"a0v8N000002SpO6QAK","IsDeleted":false,"Name":"QL-0000013","CreatedDate":"2023-09-29T19:33:30.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:30.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:30.000+0000","SBQQ__Quote__c":"a0z8N000000yve3QAA","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__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":"01u8N000003ce0zQAA","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000002zJJ8QAM","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__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":1440.00,"SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2023-09-29","SBQQ__EffectiveSubscriptionTerm__c":12,"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-09-29 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__Subscription__c","url":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/a1B8N0000015OU6UAM"},"Id":"a1B8N0000015OU6UAM","OwnerId":"0058N000004zYG5QAM","IsDeleted":false,"Name":"SUB-0000001","CreatedDate":"2023-09-29T19:33:43.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:43.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:43.000+0000","SBQQ__Account__c":"0018N00000JKlPSQA1","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8008N000000gHheQAE","SBQQ__CustomerPrice__c":1440.00,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__ListPrice__c":1440.00,"SBQQ__NetPrice__c":1440.00,"SBQQ__Number__c":1,"SBQQ__OrderProduct__c":"8028N0000005muJQAQ","SBQQ__OriginalQuoteLine__c":"a0v8N000002SpO6QAK","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t8N000002zJJ8QAM","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v8N000002SpO6QAK","SBQQ__RegularPrice__c":1440.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B8N0000015OU6UAM","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionStartDate__c":"2023-09-29","SBQQ__ContractNumber__c":"00000101","SBQQ__EndDate__c":"2024-09-28","SBQQ__ProductId__c":"01t8N000002zJJ8","SBQQ__ProductName__c":"REST + Product2 2023-09-29 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t8N000002zJJ8","SBQQ__StartDate__c":"2023-09-29","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t8N000002zJJ8QAM"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":-360.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8028N0000005muJQAQ","SBQQ__QuotedQuantity__c":-1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002SpOCQA0","SBQQ__ProrateMultiplier__c":3.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":"Cancel","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000006","SystemModstamp":"2023-09-29T19:33:54.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:54.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:53.000+0000","EndDate":"2024-09-28","ServiceDate":"2024-06-29","TotalPrice":-360.00,"ListPrice":120.00,"UnitPrice":360.00,"Quantity":-1.00,"AvailableQuantity":-1.00,"PricebookEntryId":"01u8N000003ce0zQAA","OrderId":"8018N0000002yUWQAY","IsDeleted":false,"Product2Id":"01t8N000002zJJ8QAM","Id":"8028N0000005muOQAQ","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005muOQAQ","type":"OrderItem"}},{"Contracts":["8008N000000gHheQAE"],"PricebookEntries":[],"Products":["01t8N000002zJJ8QAM"],"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__Subscription__c":"a1B8N0000015OU6UAM","SBQQ__SubscriptionTerm__c":12,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8028N0000005muEQAQ","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v8N000002SpO6QAK","SBQQ__ProrateMultiplier__c":12.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":true,"SBQQ__Contract__c":"8008N000000gHheQAE","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000005","SystemModstamp":"2023-09-29T19:33:44.000+0000","LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:44.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:30.000+0000","EndDate":"2024-09-28","ServiceDate":"2023-09-29","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u8N000003ce0zQAA","OrderId":"8018N0000002yURQAY","IsDeleted":false,"Product2Id":"01t8N000002zJJ8QAM","Id":"8028N0000005muJQAQ","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8028N0000005muJQAQ","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0068N000006Po59QAC"},"Id":"0068N000006Po59QAC","IsDeleted":false,"AccountId":"0018N00000JKlPSQA1","IsPrivate":false,"Name":"REST + Opportunity 2023-09-29 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-09-29","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:24.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:25.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:25.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 + 3","LastViewedDate":"2023-09-29T19:33:24.000+0000","LastReferencedDate":"2023-09-29T19:33:24.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z8N000000yve3QAA","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.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":["0068N000006Po5EQAS"],"Accounts":["0018N00000JKlPSQA1"],"OrderItems":["8028N0000005muOQAQ"],"Quotes":["a0z8N000000yve8QAA"],"InitialOrderQuotes":["a0z8N000000yve3QAA"],"InitialOrderId":["8018N0000002yURQAY"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z8N000000yve3QAA","Id":"8008N000000gHheQAE","attributes":{"url":"/services/data/v58.0/sobjects/Contract/8008N000000gHheQAE","type":"Contract"}},"SBQQ__AmendedContract__c":"8008N000000gHheQAE","Id":"0068N000006Po5EQAS","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0068N000006Po5EQAS","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":-360.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":12,"SBQQ__Quote__c":"a0z8N000000yve8QAA","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-09-29T19:33:55.000+0000","LastViewedDate":"2023-09-29T19:33:55.000+0000","SystemModstamp":"2023-09-29T19:33:54.000+0000","IsDeleted":false,"LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:54.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:52.000+0000","TotalAmount":-360.00,"OrderNumber":"00000105","StatusCode":"Activated","ActivatedById":"0058N000004zYG5QAM","ActivatedDate":"2023-09-29T19:33:54.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2024-06-29","OpportunityId":"0068N000006Po5EQAS","Pricebook2Id":"01s8N000002d0dzQAA","AccountId":"0018N00000JKlPSQA1","OwnerId":"0058N000004zYG5QAM","Id":"8018N0000002yUWQAY","attributes":{"url":"/services/data/v58.0/sobjects/Order/8018N0000002yUWQAY","type":"Order"}},{"PriceBooks":["01s8N000002d0dzQAA"],"Opportunities":["0068N000006Po59QAC"],"Accounts":["0018N00000JKlPSQA1"],"OrderItems":["8028N0000005muJQAQ"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NvmRVIsgf92XbAOxkRzJ4CT","Stripe_ID__c":"sub_sched_1NvmRVIsgf92XbAOxkRzJ4CT","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z8N000000yve3QAA","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-09-29T19:33:44.000+0000","LastViewedDate":"2023-09-29T19:33:44.000+0000","SystemModstamp":"2023-09-29T19:33:42.000+0000","IsDeleted":false,"LastModifiedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:42.000+0000","CreatedById":"0058N000004zYG5QAM","CreatedDate":"2023-09-29T19:33:30.000+0000","TotalAmount":1440.00,"OrderNumber":"00000104","StatusCode":"Activated","ActivatedById":"0058N000004zYG5QAM","ActivatedDate":"2023-09-29T19:33:32.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-09-29","OpportunityId":"0068N000006Po59QAC","Pricebook2Id":"01s8N000002d0dzQAA","AccountId":"0018N00000JKlPSQA1","OwnerId":"0058N000004zYG5QAM","Id":"8018N0000002yURQAY","attributes":{"url":"/services/data/v58.0/sobjects/Order/8018N0000002yURQAY","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: Fri, 29 Sep 2023 19:33:58 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%278018N0000002yURQAY%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: + - Fri, 29 Sep 2023 19:33:59 GMT + Set-Cookie: + - BrowserId=IutvAF7_Ee6ZdZPnrQ05Ng; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=490/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/8018N0000002yURQAY"},"Id":"8018N0000002yURQAY"}]}' + recorded_at: Fri, 29 Sep 2023 19:33:59 GMT +- request: + method: get + uri: https://api.stripe.com/v1/subscriptions/sub_sched_1NvmRVIsgf92XbAOxkRzJ4CT + 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_uQHpr5us65fELn","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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/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: 404 + message: Not Found + headers: + Server: + - nginx + Date: + - Fri, 29 Sep 2023 19:33:59 GMT + Content-Type: + - application/json + Content-Length: + - '375' + 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 + Request-Id: + - req_VGM5ojc0CZY1RA + 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: | + { + "error": { + "code": "resource_missing", + "doc_url": "https://stripe.com/docs/error-codes/resource-missing", + "message": "No such subscription: 'sub_sched_1NvmRVIsgf92XbAOxkRzJ4CT'", + "param": "id", + "request_log_url": "https://dashboard.stripe.com/acct_15uapDIsgf92XbAO/test/logs/req_VGM5ojc0CZY1RA?t=1696016039", + "type": "invalid_request_error" + } + } + recorded_at: Fri, 29 Sep 2023 19:33:59 GMT +- request: + method: get + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NvmRVIsgf92XbAOxkRzJ4CT + 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_uQHpr5us65fELn","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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/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: + - Fri, 29 Sep 2023 19:33:59 GMT + Content-Type: + - application/json + Content-Length: + - '2452' + 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 + Request-Id: + - req_qIZS24jUfoZewm + 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_1NvmRVIsgf92XbAOxkRzJ4CT", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1696016021, + "current_phase": { + "end_date": 1727568000, + "start_date": 1695945600 + }, + "customer": "cus_OjEvkz789ARtFS", + "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": "8018N0000002yURQAY", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N0000002yURQAY" + }, + "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": 1727568000, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005muJQAQ", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005muJQAQ" + }, + "plan": "price_1NvmRUIsgf92XbAOWawhQYPa", + "price": "price_1NvmRUIsgf92XbAOWawhQYPa", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N0000002yURQAY", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N0000002yURQAY" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1695945600, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": null, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "active", + "subscription": "sub_1NvmRVIsgf92XbAOPEIVC3Ig", + "test_clock": null + } + recorded_at: Fri, 29 Sep 2023 19:33:59 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%278018N0000002yUWQAY%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: + - Fri, 29 Sep 2023 19:33:59 GMT + Set-Cookie: + - BrowserId=I0Sx8F7_Ee6rANtKOELnrw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=491/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/8018N0000002yUWQAY"},"Id":"8018N0000002yUWQAY"}]}' + recorded_at: Fri, 29 Sep 2023 19:33:59 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8018N0000002yURQAY + 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: + - Fri, 29 Sep 2023 19:33:59 GMT + Set-Cookie: + - BrowserId=I2ApAV7_Ee6B9SGa1e-7uQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:33:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:33: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=496/5000000 + Last-Modified: + - Fri, 29 Sep 2023 19:33:42 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/8018N0000002yURQAY"},"Id":"8018N0000002yURQAY","OwnerId":"0058N000004zYG5QAM","ContractId":null,"AccountId":"0018N00000JKlPSQA1","Pricebook2Id":"01s8N000002d0dzQAA","OriginalOrderId":null,"OpportunityId":"0068N000006Po59QAC","EffectiveDate":"2023-09-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-09-29T19:33:32.000+0000","ActivatedById":"0058N000004zYG5QAM","StatusCode":"Activated","OrderNumber":"00000104","TotalAmount":1440.0,"CreatedDate":"2023-09-29T19:33:30.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:42.000+0000","LastModifiedById":"0058N000004zYG5QAM","IsDeleted":false,"SystemModstamp":"2023-09-29T19:33:42.000+0000","LastViewedDate":"2023-09-29T19:33:44.000+0000","LastReferencedDate":"2023-09-29T19:33:44.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":"a0z8N000000yve3QAA","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":1440.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1NvmRVIsgf92XbAOxkRzJ4CT","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NvmRVIsgf92XbAOxkRzJ4CT"}' + recorded_at: Fri, 29 Sep 2023 19:33:59 GMT +- request: + method: get + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NvmRVIsgf92XbAOxkRzJ4CT + 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_qIZS24jUfoZewm","request_duration_ms":217}}' + 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.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/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: + - Fri, 29 Sep 2023 19:34:00 GMT + Content-Type: + - application/json + Content-Length: + - '2452' + 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 + Request-Id: + - req_koXMdnEqxmB8QY + 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_1NvmRVIsgf92XbAOxkRzJ4CT", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1696016021, + "current_phase": { + "end_date": 1727568000, + "start_date": 1695945600 + }, + "customer": "cus_OjEvkz789ARtFS", + "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": "8018N0000002yURQAY", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N0000002yURQAY" + }, + "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": 1727568000, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [], + "metadata": { + "salesforce_order_item_id": "8028N0000005muJQAQ", + "salesforce_order_item_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8028N0000005muJQAQ" + }, + "plan": "price_1NvmRUIsgf92XbAOWawhQYPa", + "price": "price_1NvmRUIsgf92XbAOWawhQYPa", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8018N0000002yURQAY", + "salesforce_order_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/8018N0000002yURQAY" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1695945600, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": null, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "active", + "subscription": "sub_1NvmRVIsgf92XbAOPEIVC3Ig", + "test_clock": null + } + recorded_at: Fri, 29 Sep 2023 19:34:00 GMT +- request: + method: get + uri: https://platform-page-3481-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z8N000000yve3QAA + 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: + - Fri, 29 Sep 2023 19:34:00 GMT + Set-Cookie: + - BrowserId=I565F17_Ee6E5X1Ey17tEQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:34:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34: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=490/5000000 + Last-Modified: + - Fri, 29 Sep 2023 19:33:30 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/a0z8N000000yve3QAA"},"Id":"a0z8N000000yve3QAA","OwnerId":"0058N000004zYG5QAM","IsDeleted":false,"Name":"Q-00004","CreatedDate":"2023-09-29T19:33:25.000+0000","CreatedById":"0058N000004zYG5QAM","LastModifiedDate":"2023-09-29T19:33:30.000+0000","LastModifiedById":"0058N000004zYG5QAM","SystemModstamp":"2023-09-29T19:33:30.000+0000","LastActivityDate":null,"LastViewedDate":"2023-09-29T19:33:30.000+0000","LastReferencedDate":"2023-09-29T19:33:30.000+0000","SBQQ__Account__c":"0018N00000JKlPSQA1","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-09-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-09-29T19:33: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":"0068N000006Po59QAC","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":"01s8N000002d0dzQAA","SBQQ__PricebookId__c":"01s8N000002d0dzQAA","SBQQ__PrimaryContact__c":"0038N00000GEDeVQAX","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-09-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-09-29","SBQQ__Status__c":"Draft","SBQQ__SubscriptionTerm__c":12.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-10-29","SBQQ__TotalCustomerDiscountAmount__c":0.0,"SBQQ__Uncalculated__c":true,"SBQQ__CustomerAmount__c":1440.0,"SBQQ__ListAmount__c":1440.0,"SBQQ__NetAmount__c":1440.0,"SBQQ__RegularAmount__c":1440.0}' + recorded_at: Fri, 29 Sep 2023 19:34:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/products/prod_OjEvTrqYWrGGJc + 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_koXMdnEqxmB8QY","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-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/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: + - Fri, 29 Sep 2023 19:34:00 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-uri /csp-report?p=%2Fv1%2Fproducts%2F%3Aid;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 + 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' + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin + Request-Id: + - req_SmqazDFVqZvZFK + 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_OjEvTrqYWrGGJc", + "object": "product", + "active": true, + "attributes": [], + "created": 1696016017, + "default_price": null, + "description": "A great description", + "features": [], + "identifiers": {}, + "images": [], + "livemode": false, + "metadata": { + "salesforce_product2_id": "01t8N000002zJJ8QAM", + "salesforce_product2_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01t8N000002zJJ8QAM" + }, + "name": "REST Product2 2023-09-29 00:00:00 UTC", + "package_dimensions": null, + "product_class": null, + "shippable": null, + "sku": "rest-product2--2023-09-29-000000-utc-3", + "statement_descriptor": null, + "tax_code": null, + "type": "service", + "unit_label": null, + "updated": 1696016017, + "url": null + } + recorded_at: Fri, 29 Sep 2023 19:34: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%2701t8N000002zJJ8QAM%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: + - Fri, 29 Sep 2023 19:34:01 GMT + Set-Cookie: + - BrowserId=JE5Z0F7_Ee6avPkwqjwF2g; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:34:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34: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=488/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: Fri, 29 Sep 2023 19:34:01 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%2701t8N000002zJJ8QAM%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: + - Fri, 29 Sep 2023 19:34:01 GMT + Set-Cookie: + - BrowserId=JHtdIF7_Ee6jbVM7DSi9LQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:34:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34: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=490/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: Fri, 29 Sep 2023 19:34:01 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%278028N0000005muJQAQ%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: + - Fri, 29 Sep 2023 19:34:01 GMT + Set-Cookie: + - BrowserId=JJQ8i17_Ee6pXW3__ehaHg; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:34:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34: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=489/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: Fri, 29 Sep 2023 19:34:01 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%278028N0000005muJQAQ%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: + - Fri, 29 Sep 2023 19:34:02 GMT + Set-Cookie: + - BrowserId=JLCeIV7_Ee6rANtKOELnrw; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:34:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34: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=492/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: Fri, 29 Sep 2023 19:34:02 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1NvmRUIsgf92XbAOWawhQYPa?expand%5B%5D=tiers + 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_SmqazDFVqZvZFK","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-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/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: + - Fri, 29 Sep 2023 19:34:02 GMT + Content-Type: + - application/json + Content-Length: + - '817' + 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-uri /csp-report?p=%2Fv1%2Fprices%2F%3Aprice;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 + 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' + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin + Request-Id: + - req_5dZ7O3qHCa6omn + 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": "price_1NvmRUIsgf92XbAOWawhQYPa", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1696016020, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u8N000003ce0zQAA", + "salesforce_pricebook_entry_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01u8N000003ce0zQAA" + }, + "nickname": null, + "product": "prod_OjEvTrqYWrGGJc", + "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": 12000, + "unit_amount_decimal": "12000" + } + recorded_at: Fri, 29 Sep 2023 19:34:02 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%2701t8N000002zJJ8QAM%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: + - Fri, 29 Sep 2023 19:34:02 GMT + Set-Cookie: + - BrowserId=JO3OMl7_Ee6avPkwqjwF2g; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:34:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34: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=489/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: Fri, 29 Sep 2023 19:34:02 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1NvmRUIsgf92XbAOWawhQYPa + 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_5dZ7O3qHCa6omn","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 22.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/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: + - Fri, 29 Sep 2023 19:34:02 GMT + Content-Type: + - application/json + Content-Length: + - '817' + 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-uri /csp-report?p=%2Fv1%2Fprices%2F%3Aprice;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 + 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' + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin + Request-Id: + - req_E3ELGEDzVmtLoj + 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": "price_1NvmRUIsgf92XbAOWawhQYPa", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1696016020, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u8N000003ce0zQAA", + "salesforce_pricebook_entry_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01u8N000003ce0zQAA" + }, + "nickname": null, + "product": "prod_OjEvTrqYWrGGJc", + "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": 12000, + "unit_amount_decimal": "12000" + } + recorded_at: Fri, 29 Sep 2023 19:34:02 GMT +- request: + method: get + uri: https://api.stripe.com/v1/products/prod_OjEvTrqYWrGGJc + 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_E3ELGEDzVmtLoj","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-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/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: + - Fri, 29 Sep 2023 19:34:02 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-uri /csp-report?p=%2Fv1%2Fproducts%2F%3Aid;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 + 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' + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin + Request-Id: + - req_Cwc2GVeVgfPxvl + 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_OjEvTrqYWrGGJc", + "object": "product", + "active": true, + "attributes": [], + "created": 1696016017, + "default_price": null, + "description": "A great description", + "features": [], + "identifiers": {}, + "images": [], + "livemode": false, + "metadata": { + "salesforce_product2_id": "01t8N000002zJJ8QAM", + "salesforce_product2_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01t8N000002zJJ8QAM" + }, + "name": "REST Product2 2023-09-29 00:00:00 UTC", + "package_dimensions": null, + "product_class": null, + "shippable": null, + "sku": "rest-product2--2023-09-29-000000-utc-3", + "statement_descriptor": null, + "tax_code": null, + "type": "service", + "unit_label": null, + "updated": 1696016017, + "url": null + } + recorded_at: Fri, 29 Sep 2023 19:34:02 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%2701t8N000002zJJ8QAM%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: + - Fri, 29 Sep 2023 19:34:02 GMT + Set-Cookie: + - BrowserId=JUO2d17_Ee63JXvdedQYag; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:34:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34: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=492/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: Fri, 29 Sep 2023 19:34:02 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%278028N0000005muOQAQ%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: + - Fri, 29 Sep 2023 19:34:03 GMT + Set-Cookie: + - BrowserId=JV98BV7_Ee6nfRHpcPFuBQ; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:34:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34: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=493/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: Fri, 29 Sep 2023 19:34:03 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1NvmRUIsgf92XbAOWawhQYPa?expand%5B%5D=tiers + 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_Cwc2GVeVgfPxvl","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-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 22.6.0 Darwin Kernel Version 22.6.0: Wed Jul 5 22:22:05 PDT + 2023; root:xnu-8796.141.3~6/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: + - Fri, 29 Sep 2023 19:34:03 GMT + Content-Type: + - application/json + Content-Length: + - '817' + 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-uri /csp-report?p=%2Fv1%2Fprices%2F%3Aprice;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 + 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' + Expires: + - '0' + Pragma: + - no-cache + Referrer-Policy: + - strict-origin-when-cross-origin + Request-Id: + - req_eskboGzPA6okWw + 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": "price_1NvmRUIsgf92XbAOWawhQYPa", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1696016020, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u8N000003ce0zQAA", + "salesforce_pricebook_entry_link": "https://platform-page-3481-dev-ed.scratch.my.salesforce.com/01u8N000003ce0zQAA" + }, + "nickname": null, + "product": "prod_OjEvTrqYWrGGJc", + "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": 12000, + "unit_amount_decimal": "12000" + } + recorded_at: Fri, 29 Sep 2023 19:34:03 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%2701t8N000002zJJ8QAM%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: + - Fri, 29 Sep 2023 19:34:03 GMT + Set-Cookie: + - BrowserId=JZyEdl7_Ee6ZdZPnrQ05Ng; domain=.salesforce.com; path=/; expires=Sat, + 28-Sep-2024 19:34:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Sat, 28-Sep-2024 19:34: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=497/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: Fri, 29 Sep 2023 19:34:03 GMT +recorded_with: VCR 6.2.0